diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/structs.go | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/structs.go b/src/structs.go index 9db5ab7..c70ecb4 100644 --- a/src/structs.go +++ b/src/structs.go @@ -12,7 +12,19 @@ type Challenge struct { Static bool `json:"static"` } +// StrippedChallenge contains a stripped version of the challenge (no flag, but +// its hash!) +type StrippedChallenge struct { + Name string `json:"name"` + Description string `json:"description"` + FlagHash string `json:"flaghash"` + Container string `json:"container"` + Category string `json:"category"` + Points int `json:"points"` + Static bool `json:"static"` +} + // Challenges defines a list of challenges. type Challenges struct { - Challenge []Challenge + Challenge []Challenge `json:"challenges"` } |