12 lines
180 B
Go
12 lines
180 B
Go
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}
|
|
}
|