initial commit

This commit is contained in:
2026-04-02 01:52:41 -04:00
commit 571aab64bb
10 changed files with 611 additions and 0 deletions

16
attach-role.go Normal file
View File

@@ -0,0 +1,16 @@
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")
}