mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-23 19:31:03 +01:00
22 lines
468 B
Go
22 lines
468 B
Go
|
//go:build !pro
|
||
|
|
||
|
package api
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
func getTerraformState(w http.ResponseWriter, r *http.Request) {
|
||
|
w.WriteHeader(http.StatusNotFound)
|
||
|
}
|
||
|
|
||
|
func addTerraformState(w http.ResponseWriter, r *http.Request) {
|
||
|
w.WriteHeader(http.StatusNotFound)
|
||
|
}
|
||
|
|
||
|
func lockTerraformState(w http.ResponseWriter, r *http.Request) {
|
||
|
w.WriteHeader(http.StatusNotFound)
|
||
|
}
|
||
|
|
||
|
func unlockTerraformState(w http.ResponseWriter, r *http.Request) {
|
||
|
w.WriteHeader(http.StatusNotFound)
|
||
|
}
|