package handlers import "synlotto-website/internal/platform/config" type Handler struct { cfg config.Config } func New(cfg config.Config) *Handler { return &Handler{cfg: cfg} }