mirror of
https://github.com/SamyRai/tercul-backend.git
synced 2025-12-26 22:21:33 +00:00
This commit introduces analytics features to the application. It includes: - Extended domain models for storing analytics data. - An analytics repository and service for managing the data. - Integration with GraphQL mutations to update analytics counts. - New GraphQL queries to expose analytics data. - Unit and integration tests for the new features.
10 lines
175 B
Go
10 lines
175 B
Go
//go:build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/99designs/gqlgen"
|
|
_ "github.com/99designs/gqlgen/graphql/introspection"
|
|
_ "github.com/pressly/goose/v3/cmd/goose"
|
|
)
|