aboutsummaryrefslogtreecommitdiff
path: root/pkg/model
diff options
context:
space:
mode:
authorJulien Dessaux2021-09-08 15:23:50 +0200
committerJulien Dessaux2021-09-08 16:12:01 +0200
commit3c5e31b25a53268b413bc1e511b7486a2a1c80b9 (patch)
treef6fe9a82eab8abf7a01f84bce954edc7462f87a2 /pkg/model
parentRemoved useless user model code (diff)
downloadtrains-3c5e31b25a53268b413bc1e511b7486a2a1c80b9.tar.gz
trains-3c5e31b25a53268b413bc1e511b7486a2a1c80b9.tar.bz2
trains-3c5e31b25a53268b413bc1e511b7486a2a1c80b9.zip
Renamed TrainStop to simply Stop
Diffstat (limited to 'pkg/model')
-rw-r--r--pkg/model/stop.go (renamed from pkg/model/train_stop.go)2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/model/train_stop.go b/pkg/model/stop.go
index e5b1f6e..d6522e3 100644
--- a/pkg/model/train_stop.go
+++ b/pkg/model/stop.go
@@ -1,6 +1,6 @@
package model
-type TrainStop struct {
+type Stop struct {
Id string
Name string
}