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

17 lines
343 B

package main
import (
"git.brettb.xyz/goinv/client/internal/app"
"go.uber.org/zap"
)
func main() {
logger, _ := zap.NewProduction()
defer logger.Sync()
a := app.NewApp("goinv", "0.1.1", "http://localhost:3001", logger) // TODO: CONFIGURATION
if err := a.Run(); err != nil {
logger.Panic("application errored", zap.Error(err))
}
}