refactor: correct import path for db_dialects package in mssql and postgres files; add db_dialects package

This commit is contained in:
2026-04-26 19:25:16 -05:00
parent 2b2d740d2e
commit 33af391986
3 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
package db_dialects
const (
SqlServer string = "sqlserver"
Postgres string = "postgres"
Null string = "null"
)