generated from VLADIMIR/template
49 lines
1.3 KiB
Go
49 lines
1.3 KiB
Go
package services
|
|
|
|
import (
|
|
"context"
|
|
"evening_detective/proto"
|
|
)
|
|
|
|
type Services struct{}
|
|
|
|
func NewServices() *Services {
|
|
return &Services{}
|
|
}
|
|
|
|
func (s *Services) GiveApplications(ctx context.Context, req *proto.GiveApplicationsReq) (*proto.GiveApplicationsRsp, error) {
|
|
panic("unimplemented")
|
|
}
|
|
|
|
func (s *Services) GameStop(ctx context.Context, req *proto.GameStopReq) (*proto.GameStopRsp, error) {
|
|
panic("unimplemented")
|
|
}
|
|
|
|
func (s *Services) GameStart(ctx context.Context, req *proto.GameStartReq) (*proto.GameStartRsp, error) {
|
|
panic("unimplemented")
|
|
}
|
|
|
|
func (s *Services) AddAction(ctx context.Context, req *proto.AddActionReq) (*proto.AddActionRsp, error) {
|
|
panic("unimplemented")
|
|
}
|
|
|
|
func (s *Services) DeleteTeams(ctx context.Context, req *proto.DeleteTeamsReq) (*proto.DeleteTeamsRsp, error) {
|
|
panic("unimplemented")
|
|
}
|
|
|
|
func (s *Services) GetTeam(ctx context.Context, req *proto.GetTeamReq) (*proto.GetTeamRsp, error) {
|
|
panic("unimplemented")
|
|
}
|
|
|
|
func (s *Services) GetTeamsCSV(ctx context.Context, req *proto.GetTeamsCSVReq) (*proto.GetTeamsCSVRsp, error) {
|
|
panic("unimplemented")
|
|
}
|
|
|
|
func (s *Services) GetTeams(ctx context.Context, req *proto.GetTeamsReq) (*proto.GetTeamsRsp, error) {
|
|
panic("unimplemented")
|
|
}
|
|
|
|
func (s *Services) AddTeams(ctx context.Context, req *proto.AddTeamsReq) (*proto.AddTeamsRsp, error) {
|
|
panic("unimplemented")
|
|
}
|