dal/main.go
Anton Nesterov ae6799ca8e
[ref] go module paths
Signed-off-by: Anton Nesterov <anton@demiurg.io>
2024-08-20 16:21:47 +02:00

12 lines
144 B
Go

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