about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2019-10-19 00:57:45 +0200
committerEmile <hanemile@protonmail.com>2019-10-19 00:57:45 +0200
commit7ce33761abcd297f739208be14ff37fe80eab1ec (patch)
treec4cff3e85f26b162d69375e52dd48e2980a011ca /src
parentd16507dea1f386340d524ccba5ab317789c6c872 (diff)
challenge struct
Diffstat (limited to 'src')
-rw-r--r--src/structs.go11
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
+}