thestrukture/IDE

View on GitHub
api/handlers/rest_GETApiKanban.go

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
// File generated by Gopher Sauce
// DO NOT EDIT!!
package handlers

import (
    "net/http"

    "github.com/gorilla/sessions"
    methods "github.com/thestrukture/IDE/api/methods"
)

//
func GETApiKanban(w http.ResponseWriter, r *http.Request, session *sessions.Session) (response string, callmet bool) {

    pkgName := r.FormValue("pkg")
    response = mResponse(methods.GetKanBan(pkgName))

    callmet = true
    return
}