You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
586 B
Go

10 years ago
package main
import (
10 years ago
"fmt"
"os"
10 years ago
)
var dataPath = "/projects/exo/expl.speck"
func log_error(template string, args ...interface{}) {
10 years ago
fmt.Fprint(os.Stderr, "ERROR ")
fmt.Fprintf(os.Stderr, template+"\n", args...)
10 years ago
}
func log_info(template string, args ...interface{}) {
10 years ago
fmt.Fprint(os.Stdout, "INFO ")
fmt.Fprintf(os.Stdout, template+"\n", args...)
10 years ago
}
func bail(status int, template string, args ...interface{}) {
10 years ago
if status == 0 {
fmt.Fprintf(os.Stdout, template, args...)
} else {
fmt.Fprintf(os.Stderr, template, args...)
}
os.Exit(status)
10 years ago
}
func main() {
10 years ago
setupDb()
10 years ago
}