The storage system and conversion tools for the new Logs website.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
383 B

package main
import (
"flag"
_ "github.com/go-sql-driver/mysql"
)
var flagUser = flag.String("user", "logbot4", "MySQL user")
var flagPassword = flag.String("password", "logbot4", "MySQL password")
var flagDatabase = flag.String("database", "logbot4", "MySQL database")
var flagFile = flag.String("file", "logbot4", "The logbot3 file to convert")
func main() {
flag.Parse()
}