Versions in this module Expand all Collapse all v0 v0.0.5 Jul 25, 2023 Changes in this version type App + func (app *App) HTMLRouter(name string, funcRouter HTMLHandler) + type HTMLHandler func(db *sqlx.DB, query string) map[string]interface v0.0.3 Jul 23, 2023 Changes in this version + func OpenDB(database string) *sqlx.DB + type App struct + func NewApp(name string, db *sqlx.DB) *App + func (app *App) JSONRouter(name string, funcRouter StringHandler) + func (app *App) Start(port int) error + func (app *App) StringRouter(name string, funcRouter StringHandler) + type StringHandler func(db *sqlx.DB, query string) string