From 0fc57cb903e68e42b17ba750769739976eb5a8d8 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Tue, 26 Mar 2024 14:26:57 +0000 Subject: [PATCH] Add corpus type --- pkg/database/corpus.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pkg/database/corpus.go diff --git a/pkg/database/corpus.go b/pkg/database/corpus.go new file mode 100644 index 0000000..c5cc477 --- /dev/null +++ b/pkg/database/corpus.go @@ -0,0 +1,11 @@ +package database + +type CorpusEntry struct { + CRS string `json:"3ALPHA"` + NLC string `json:"NLC"` + NLCDESC string `json:"NLCDESC"` + NLCDESC16 string `json:"NLCDESC16"` + STANOX string `json:"STANOX"` + TIPLOC string `json:"TIPLOC"` + UIC string `json:"UIC"` +}