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

  1. package main
  2. import (
  3. "flag"
  4. _ "github.com/go-sql-driver/mysql"
  5. )
  6. var flagUser = flag.String("user", "logbot4", "MySQL user")
  7. var flagPassword = flag.String("password", "logbot4", "MySQL password")
  8. var flagDatabase = flag.String("database", "logbot4", "MySQL database")
  9. var flagFile = flag.String("file", "logbot4", "The logbot3 file to convert")
  10. func main() {
  11. flag.Parse()
  12. }