mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-01-28 23:19:50 -06:00
8 lines
125 B
Go
8 lines
125 B
Go
package auth
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func GetUsername(c *gin.Context) (any, bool) {
|
|
return c.Get(keyUsername)
|
|
}
|