diff options
author | Emile <hanemile@protonmail.com> | 2019-11-06 16:13:06 +0100 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2019-11-06 16:13:06 +0100 |
commit | 8d386e5dda11ef331e1af9e82f0fe8ae898f4065 (patch) | |
tree | 232c63da451789af89fe19a69d77baa0b021471d | |
parent | d753975ae9c6c82c3569a48597ef752b85b4abc8 (diff) |
structs
-rw-r--r-- | src/structs.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/structs.go b/src/structs.go new file mode 100644 index 0000000..dc64e81 --- /dev/null +++ b/src/structs.go @@ -0,0 +1,6 @@ +package main + +// Metrics defines a metrics map +type Metrics struct { + Metrics map[string]float64 +} |