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