mirror of
https://github.com/mgerb/go-discord-bot
synced 2026-01-10 09:02:49 +00:00
11 lines
206 B
Go
11 lines
206 B
Go
package handlers
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
"github.com/mgerb/go-discord-bot/server/config"
|
|
)
|
|
|
|
func GetClientID(c *gin.Context) {
|
|
c.JSON(200, map[string]string{"id": config.Config.ClientID})
|
|
}
|