mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
11 lines
187 B
Go
11 lines
187 B
Go
package dao
|
|
|
|
import (
|
|
"github.com/jmoiron/sqlx"
|
|
"go.signoz.io/signoz/ee/query-service/dao/sqlite"
|
|
)
|
|
|
|
func InitDao(inputDB *sqlx.DB) (ModelDao, error) {
|
|
return sqlite.InitDB(inputDB)
|
|
}
|