package main import ( "time" "github.com/hay-kot/content/backend/ent" "github.com/hay-kot/content/backend/internal/config" "github.com/hay-kot/content/backend/internal/repo" "github.com/hay-kot/content/backend/internal/services" "github.com/hay-kot/content/backend/pkgs/mailer" "github.com/hay-kot/content/backend/pkgs/server" ) type app struct { conf *config.Config mailer mailer.Mailer db *ent.Client server *server.Server repos *repo.AllRepos services *services.AllServices } func NewApp(conf *config.Config) *app { s := &app{ conf: conf, } s.mailer = mailer.Mailer{ Host: s.conf.Mailer.Host, Port: s.conf.Mailer.Port, Username: s.conf.Mailer.Username, Password: s.conf.Mailer.Password, From: s.conf.Mailer.From, } return s } func (a *app) StartReoccurringTasks(t time.Duration, fn func()) { for { a.server.Background(fn) time.Sleep(t) } }