Files
FPandA-Engine/internal/service/forecast-service.go
2026-03-21 18:42:54 +01:00

12 lines
225 B
Go

package service
import "Engine/internal/database"
type ForecastService struct {
repo *database.ForecastRepo
}
func NewForecastService(repo *database.ForecastRepo) *ForecastService {
return &ForecastService{repo: repo}
}