dal/main.go
Anton Nesterov b763c52867
[chore] entry point for sqlite server
Signed-off-by: Anton Nesterov <anton@demiurg.io>
2024-08-20 16:28:48 +02:00

13 lines
177 B
Go

package main
import (
_ "github.com/mattn/go-sqlite3"
"github.com/nesterow/dal/pkg/facade"
)
func main() {
server := facade.SQLiteServer{}
server.Init()
server.Serve()
}