sorare/football/rivals.go

12 lines
180 B
Go
Raw Normal View History

2024-08-03 17:36:25 +00:00
package football
import "git.lehouerou.net/laurent/sorare/graphql"
type Rivals struct {
c *graphql.Client
}
func NewRivals(c *graphql.Client) *Rivals {
return &Rivals{c: c}
}