delete unused code
This commit is contained in:
parent
09ae8b4b38
commit
85c8835e64
30
server.go
30
server.go
@ -53,33 +53,3 @@ func main() {
|
||||
log.Fatal(err)
|
||||
}
|
||||
}
|
||||
|
||||
func convertTime(t *times.TimeResponse) api.Time {
|
||||
return api.Time{
|
||||
ID: api.NewOptInt64(t.ID),
|
||||
Time: api.NewOptInt64(t.Time),
|
||||
User: api.NewOptUser(api.User{
|
||||
ID: api.NewOptInt64(t.User.ID),
|
||||
Username: api.NewOptString(t.User.Username),
|
||||
StateID: api.NewOptInt32(t.User.StateID),
|
||||
}),
|
||||
Map: api.NewOptMap(api.Map{
|
||||
ID: api.NewOptInt64(t.Map.ID),
|
||||
DisplayName: api.NewOptString(t.Map.DisplayName),
|
||||
Creator: api.NewOptString(t.Map.Creator),
|
||||
Date: api.NewOptInt64(t.Map.Date),
|
||||
}),
|
||||
Date: api.NewOptInt64(t.Date),
|
||||
StyleID: api.NewOptInt32(t.StyleID),
|
||||
ModeID: api.NewOptInt32(t.ModeID),
|
||||
GameID: api.NewOptInt32(t.GameID),
|
||||
}
|
||||
}
|
||||
|
||||
func convertTimes(timeList []*times.TimeResponse) []api.Time {
|
||||
times := make([]api.Time, len(timeList))
|
||||
for i, t := range timeList {
|
||||
times[i] = convertTime(t)
|
||||
}
|
||||
return times
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user