Include types from gonavitia/navitia

This commit is contained in:
nemunaire 2023-07-14 12:23:33 +02:00
commit 24b1102761
157 changed files with 26062 additions and 116 deletions

11
types/weekPattern.go Normal file
View file

@ -0,0 +1,11 @@
package types
type WeekPattern struct {
Monday bool `json:"monday"`
Tuesday bool `json:"tuesday"`
Friday bool `json:"friday"`
Wednesday bool `json:"wednesday"`
Thursday bool `json:"thursday"`
Sunday bool `json:"sunday"`
Saturday bool `json:"saturday"`
}