package main import ( "fmt" "io" "os" ) func Run(w io.Writer) { fmt.Fprint(w, "Hello API\n") } func main() { Run(os.Stdout) }