move config and Application struct to models

This commit is contained in:
lyx0 2022-08-10 22:06:46 +02:00
parent a0e724d009
commit 67fb901065

View file

@ -1,8 +1,34 @@
package main
import "errors"
import (
"database/sql"
"errors"
"github.com/gempir/go-twitch-irc/v3"
"github.com/lyx0/nourybot/internal/data"
"go.uber.org/zap"
)
var (
ErrUserLevelNotInteger = errors.New("user level must be a number")
ErrRecordNotFound = errors.New("user not found in the database")
)
type config struct {
twitchUsername string
twitchOauth string
environment string
db struct {
dsn string
maxOpenConns int
maxIdleConns int
maxIdleTime string
}
}
type Application struct {
TwitchClient *twitch.Client
Logger *zap.SugaredLogger
Db *sql.DB
Models data.Models
}