diff options
author | Emile <hanemile@protonmail.com> | 2019-10-19 00:57:45 +0200 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2019-10-19 00:57:45 +0200 |
commit | 7ce33761abcd297f739208be14ff37fe80eab1ec (patch) | |
tree | c4cff3e85f26b162d69375e52dd48e2980a011ca /src/structs.go | |
parent | d16507dea1f386340d524ccba5ab317789c6c872 (diff) |
challenge struct
Diffstat (limited to 'src/structs.go')
-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 +} |