fail2rest/main.go

14 lines
171 B
Go
Raw Normal View History

package main
import ("fmt")
func main() {
x := make([]string, 0)
x = append(x, "status")
output, err := fail2banRequest(x)
fmt.Println(output)
fmt.Println(err)
}