Files
GoSally/main.go
2025-09-12 19:13:46 +03:00

12 lines
170 B
Go

// Package main used only for calling cmd.Execute()
package main
import (
"github.com/akyaiy/GoSally-mvp/cmd"
_ "modernc.org/sqlite"
)
func main() {
cmd.Execute()
}