got a exporter for forecasting
This commit is contained in:
11
internal/service/forecast-service.go
Normal file
11
internal/service/forecast-service.go
Normal 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}
|
||||
}
|
||||
Reference in New Issue
Block a user