blob: 9715d4cc66943af33023734193a75014cd95d5da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package main
// Challenge defines a challenge as in the original companion.json format
type Challenge struct {
Name string
Description string
Flag string
Container string
Category string
Points int
Static bool
}
// Challenges defines a list of challenges.
type Challenges struct {
Challenge []Challenge
}
|