package db import ( "gorm.io/gorm" ) const ( TypeSQLITE = "sqlite" TypeMYSQL = "mysql" ) type Client struct { Type string *gorm.DB }