We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afd61e3 commit 63a021bCopy full SHA for 63a021b
1 file changed
main.go
@@ -12,6 +12,10 @@ func main() {
12
m.Get("/", func() string {
13
return "Hello world!"
14
})
15
- m.Post("/generate", binding.Json(ace.AceOptionsSpec{}), installer.GenerateInstaller)
+ m.Post("/generate", binding.Json(ace.AceOptionsSpec{}), GenerateInstaller)
16
m.Run()
17
}
18
+
19
+func GenerateInstaller(ctx *macaron.Context, opts ace.AceOptionsSpec) {
20
21
+}
0 commit comments