about summary refs log tree commit diff
path: root/src/structs.go
blob: f376133e50f576b2c609ec1f30ac3bdfe96cc605 (plain)
1
2
3
4
5
6
7
8
9
10
11
package main

type challenge struct {
	name        string
	description string
	flag        string
	container   string
	category    string
	points      int
	static      bool
}