12 lines
127 B
Go
12 lines
127 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Fprintln(os.Stderr, "supervisor: not yet implemented")
|
|
os.Exit(1)
|
|
}
|