diff options
author | Julien Dessaux | 2021-05-04 11:59:13 +0200 |
---|---|---|
committer | Julien Dessaux | 2021-05-04 12:03:18 +0200 |
commit | dc4fea013c5f89054ae348cab2935eebe28a4712 (patch) | |
tree | bf3455ab4e3953489495c5621a40c108d4dba5e3 /pkg/model | |
parent | Updated dependencies (diff) | |
download | trains-dc4fea013c5f89054ae348cab2935eebe28a4712.tar.gz trains-dc4fea013c5f89054ae348cab2935eebe28a4712.tar.bz2 trains-dc4fea013c5f89054ae348cab2935eebe28a4712.zip |
Cleaned the navitia - webui calls
Diffstat (limited to '')
-rw-r--r-- | pkg/model/departures.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pkg/model/departures.go b/pkg/model/departures.go new file mode 100644 index 0000000..7359d1b --- /dev/null +++ b/pkg/model/departures.go @@ -0,0 +1,6 @@ +package model + +type Departure struct { + Direction string + Arrival string +} |