mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-22 00:00:42 +01:00
20 lines
322 B
Go
20 lines
322 B
Go
package projects
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func EnvironmentMiddleware(c *gin.Context) {
|
|
c.AbortWithStatus(501)
|
|
}
|
|
|
|
func GetEnvironment(c *gin.Context) {
|
|
c.AbortWithStatus(501)
|
|
}
|
|
|
|
func AddEnvironment(c *gin.Context) {
|
|
c.AbortWithStatus(501)
|
|
}
|
|
|
|
func RemoveEnvironment(c *gin.Context) {
|
|
c.AbortWithStatus(501)
|
|
}
|