dal/main.go

13 lines
177 B
Go
Raw Normal View History

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