All checks were successful
Server Check Build (NixCN CMS) TeamCity build finished
Signed-off-by: Asai Neko <sugar@sne.moe>
12 lines
204 B
Go
12 lines
204 B
Go
package service_stats
|
|
|
|
type StatsService interface {
|
|
Global(*GlobalStatsPayload) *GlobalStatsResult
|
|
}
|
|
|
|
type StatsServiceImpl struct{}
|
|
|
|
func NewStatsService() StatsService {
|
|
return &StatsServiceImpl{}
|
|
}
|