func ResourceDescription(cx *goweb.Context) { LogRequest(cx.Request) r := resource{ R: []string{}, U: apiUrl(cx) + "/", D: siteUrl(cx) + "/", Title: conf.TITLE, C: conf.ADMIN_EMAIL, I: "AWE", T: core.Service, V: conf.VERSION, GitCommitHash: conf.GIT_COMMIT_HASH, } if core.Service == "server" { r.R = []string{"job", "work", "client", "queue", "awf"} } else if core.Service == "proxy" { r.R = []string{"client", "work"} } cx.WriteResponse(r, 200) return }