mirror of
https://github.com/certimate-go/certimate.git
synced 2026-08-30 18:01:43 +08:00
12 lines
191 B
Go
12 lines
191 B
Go
package statistics
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/certimate-go/certimate/internal/domain"
|
|
)
|
|
|
|
type statisticsRepository interface {
|
|
Get(ctx context.Context) (*domain.Statistics, error)
|
|
}
|