diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/structs.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/structs.go b/src/structs.go new file mode 100644 index 0000000..f376133 --- /dev/null +++ b/src/structs.go @@ -0,0 +1,11 @@ +package main + +type challenge struct { + name string + description string + flag string + container string + category string + points int + static bool +} |