mirror of
https://github.com/amineo/t2-stat-parser.git
synced 2026-01-20 01:34:47 +00:00
21 lines
289 B
Go
21 lines
289 B
Go
/*
|
|
|
|
Parser for DarkTiger's T2 Server Stats
|
|
|
|
[TODO]
|
|
- Read Additional GameTypes on the fly
|
|
- Use go modules
|
|
- Update to v4 SQL driver
|
|
- Ability to download stat files from remote server via FTP
|
|
*/
|
|
|
|
package main
|
|
|
|
import (
|
|
_ "github.com/amineo/t2-stat-parser"
|
|
)
|
|
|
|
func main() {
|
|
init()
|
|
}
|