Files
darkstorm-server/internal/darkstorm_backend/log.go
T
Caleb Gardner e4f8b31e29 (Probably) finished with docs and interfaces.
Starting to build out the actual logic.
2024-05-21 05:50:07 -05:00

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
}