Migrate code from Go branch to new repo

This commit is contained in:
Maddie Zhan
2020-06-02 17:47:39 +08:00
commit fad1302a73
40 changed files with 14952 additions and 0 deletions

20
database/schema/schema.go Normal file
View File

@ -0,0 +1,20 @@
package schema
import (
"time"
)
type TelemetryData struct {
Timestamp time.Time
IPAddress string
ISPInfo string
Extra string
UserAgent string
Language string
Download string
Upload string
Ping string
Jitter string
Log string
UUID string
}