Files
old-backend/controllers/simple_controller.go

16 lines
295 B
Go
Raw Normal View History

/**
* Created by VoidArtanis on 10/22/2017
*/
package controllers
import "github.com/gin-gonic/gin"
2023-09-18 12:27:40 +02:00
func GetSecretText(c *gin.Context) {
c.JSON(200, "Hi this is a secret message. Auth was successful!")
}
2023-09-18 12:27:40 +02:00
func GetPublicText(c *gin.Context) {
c.JSON(200, "Hi this is a public message!")
}