aboutsummaryrefslogtreecommitdiff
path: root/challenge.go
blob: 90d4d78236fa1a9e19214ce6ae8c4c914c2c4a0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package acme

// Solver decribes a solving interface
type Solver interface {
	Solve()
}

var challenges []string

func registerChallenge(c string) {
	challenges = append(challenges, c)
}