24 lines
425 B
Go
24 lines
425 B
Go
package client_api
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
)
|
|
|
|
type InProgress struct {
|
|
Data []int `json:"data"`
|
|
}
|
|
|
|
func inProgressHandler(data_dir string, w http.ResponseWriter, r *http.Request) {
|
|
log.Debugf("/in_progress called\n")
|
|
return_json := InProgress{
|
|
Data: []int{1, 2, 3},
|
|
}
|
|
data, err := json.Marshal(return_json)
|
|
if err != nil {
|
|
log.Errorf("Could not marshal data: %v\n", err)
|
|
return
|
|
}
|
|
w.Write(data)
|
|
}
|