e4f8b31e29
Starting to build out the actual logic.
18 lines
227 B
Go
18 lines
227 B
Go
package darkstorm
|
|
|
|
import "net/http"
|
|
|
|
type Log struct {
|
|
ID string
|
|
Platform string
|
|
Date int
|
|
}
|
|
|
|
func (l Log) GetID() string {
|
|
return l.ID
|
|
}
|
|
|
|
func (b *Backend) log(w http.ResponseWriter, r *http.Request) {
|
|
//TODO
|
|
}
|