started implementing support for tags

This commit is contained in:
Lou Knauer
2021-04-14 18:53:18 +02:00
parent bbb3281b6a
commit 499d2cdc22
5 changed files with 499 additions and 0 deletions

View File

@@ -23,3 +23,9 @@ type Job struct {
NetBw_avg *float64 `json:"netBwAvg" db:"net_bw_avg"`
FileBw_avg *float64 `json:"fileBwAvg" db:"file_bw_avg"`
}
type JobTag struct {
ID string `db:"id"`
TagType string `db:"tag_type"`
TagName string `db:"tag_name"`
}