9 lines
178 B
Go
9 lines
178 B
Go
|
package database
|
||
|
|
||
|
type PIS struct {
|
||
|
Code string `json:"code"`
|
||
|
Stops []string `json:"stops"`
|
||
|
Tiplocs []string `json:"tiplocs"`
|
||
|
Operator string `json:"operator"`
|
||
|
}
|