got a exporter for forecasting

This commit is contained in:
samantha42
2026-03-21 18:42:54 +01:00
parent 6c5b4bae67
commit 8a8a64c8af
6 changed files with 259 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
package service
import "Engine/internal/database"
type ForecastService struct {
repo *database.ForecastRepo
}
func NewForecastService(repo *database.ForecastRepo) *ForecastService {
return &ForecastService{repo: repo}
}