mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2026-05-07 14:32:42 +08:00
11 lines
165 B
Go
11 lines
165 B
Go
package crypto
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func InitPublicRouter(r *gin.RouterGroup) {
|
|
g := r.Group("/crypto")
|
|
{
|
|
g.POST("public_key", GetPublicKey)
|
|
}
|
|
}
|