17 lines
236 B
Go
17 lines
236 B
Go
package main
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
)
|
|
|
|
func attachRole(w http.ResponseWriter, r *http.Request) {
|
|
log.Println("attachRole called")
|
|
|
|
}
|
|
|
|
func detachRole(w http.ResponseWriter, r *http.Request) {
|
|
log.Println("detachRole called")
|
|
|
|
}
|