package handler import ( "gogs.veloe.link/toomanysugar/GoEthemineTelegramBot/internal/database" ) type ActionHandler struct { dbconn *database.Connection } func New(dbconn *database.Connection) *ActionHandler { ah := &ActionHandler{dbconn: dbconn} return ah }