first commit
This commit is contained in:
13
internal/service/statistics.go
Normal file
13
internal/service/statistics.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package service
|
||||
|
||||
import "beadstest/internal/storage"
|
||||
|
||||
type StatisticsService struct {
|
||||
storage *storage.StatisticsStorage
|
||||
}
|
||||
|
||||
func NewStatisticsService(storage *storage.StatisticsStorage) *StatisticsService {
|
||||
return &StatisticsService{
|
||||
storage: storage,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user