You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
superhighway84/superhighway84.go

94 lines
1.9 KiB
Go

package main
import (
"embed"
"log"
"os"
"github.com/mrusme/superhighway84/tui"
)
//go:embed superhighway84.png
var EMBEDFS embed.FS
func main() {
// ctx, cancel := context.WithCancel(context.Background())
// defer cancel()
dbInit := false
dbInitValue := os.Getenv("SUPERHIGHWAY84_DB_INIT")
if dbInitValue == "1" {
dbInit = true
}
dbURI := os.Getenv("SUPERHIGHWAY84_DB_URI")
if dbInit == false && dbURI == "" {
log.Panicln("SUPERHIGHWAY84_DB_URI missing!")
}
dbCache := os.Getenv("SUPERHIGHWAY84_DB_CACHE")
if dbCache == "" {
log.Panicln("SUPERHIGHWAY84_DB_CACHE missing!")
}
TUI := tui.Init(&EMBEDFS)
TUI.SetView("splashscreen")
if err := TUI.App.Run(); err != nil {
panic(err)
}
// logger, err := zap.NewDevelopment()
// if err != nil {
// log.Panicln(err)
// }
//
// db, err := database.NewDatabase(ctx, dbURI, dbCache, dbInit, logger)
// if err != nil {
// log.Panicln(err)
// }
// defer db.Disconnect()
// db.Connect()
//
// var input string
// for {
// fmt.Scanln(&input)
//
// switch input {
// case "q":
// return
// case "g":
// fmt.Scanln(&input)
// article, err := db.GetArticleByID(input)
// if err != nil {
// log.Println(err)
// } else {
// log.Println(article)
// }
// case "p":
// article := models.NewArticle()
// article.From = "test@example.com"
// article.Newsgroup = "comp.test"
// article.Subject = "This is a test!"
// article.Body = "Hey there, this is a test!"
//
// err = db.SubmitArticle(article)
// if err != nil {
// log.Println(err)
// } else {
// log.Println(article)
// }
// case "l":
// articles, err := db.ListArticles()
// if err != nil {
// log.Println(err)
// } else {
// log.Println(articles)
// }
// }
//
// }
}