got a exporter for forecasting
This commit is contained in:
13
internal/database/forecast-repo.go
Normal file
13
internal/database/forecast-repo.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package database
|
||||
|
||||
import "database/sql"
|
||||
|
||||
type ForecastRepo struct {
|
||||
db *sql.DB
|
||||
}
|
||||
|
||||
func NewForecastRepo(db *sql.DB) *ForecastRepo {
|
||||
return &ForecastRepo{
|
||||
db: db,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user