You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
610 B
Go

10 months ago
package api
import "net/http"
// /savedata/get - get save data
10 months ago
type SavedataGetRequest struct{}
type SavedataGetResponse struct{}
func (s *Server) HandleSavedataGet(w http.ResponseWriter, r *http.Request) {
10 months ago
}
// /savedata/update - update save data
10 months ago
type SavedataUpdateRequest struct{}
type SavedataUpdateResponse struct{}
func (s *Server) HandleSavedataUpdate(w http.ResponseWriter, r *http.Request) {
10 months ago
}
// /savedata/delete - delete save date
10 months ago
type SavedataDeleteRequest struct{}
type SavedataDeleteResponse struct{}
func (s *Server) HandleSavedataDelete(w http.ResponseWriter, r *http.Request) {
10 months ago
}