about summary refs log tree commit diff
diff options
context:
space:
mode:
-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
+}