mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2025-12-06 15:22:47 +01:00
12 lines
215 B
Go
12 lines
215 B
Go
package service
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/SecurityBrewery/catalyst/generated/model"
|
|
)
|
|
|
|
func (s *Service) GetStatistics(ctx context.Context) (*model.Statistics, error) {
|
|
return s.database.Statistics(ctx)
|
|
}
|