dal/main.go

14 lines
178 B
Go
Raw Normal View History

package main
import (
"github.com/nesterow/dal/pkg/facade"
2024-08-20 17:34:01 +00:00
_ "github.com/mattn/go-sqlite3"
)
func main() {
server := facade.SQLiteServer{}
server.Init()
server.Serve()
}