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