mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-23 19:31:03 +01:00
42 lines
1.1 KiB
Go
42 lines
1.1 KiB
Go
|
//go:build !pro
|
||
|
|
||
|
package projects
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
func GetTerraformInventoryAliases(w http.ResponseWriter, r *http.Request) {
|
||
|
w.WriteHeader(http.StatusNotFound)
|
||
|
}
|
||
|
|
||
|
func AddTerraformInventoryAlias(w http.ResponseWriter, r *http.Request) {
|
||
|
w.WriteHeader(http.StatusNotFound)
|
||
|
}
|
||
|
|
||
|
func GetTerraformInventoryAlias(w http.ResponseWriter, r *http.Request) {
|
||
|
w.WriteHeader(http.StatusNotFound)
|
||
|
}
|
||
|
|
||
|
func DeleteTerraformInventoryAlias(w http.ResponseWriter, r *http.Request) {
|
||
|
w.WriteHeader(http.StatusNotFound)
|
||
|
}
|
||
|
|
||
|
func SetTerraformInventoryAliasAccessKey(w http.ResponseWriter, r *http.Request) {
|
||
|
w.WriteHeader(http.StatusNotFound)
|
||
|
}
|
||
|
|
||
|
func GetTerraformInventoryStates(w http.ResponseWriter, r *http.Request) {
|
||
|
w.WriteHeader(http.StatusNotFound)
|
||
|
}
|
||
|
|
||
|
func AddTerraformInventoryState(w http.ResponseWriter, r *http.Request) {
|
||
|
w.WriteHeader(http.StatusNotFound)
|
||
|
}
|
||
|
|
||
|
func GetTerraformInventoryState(w http.ResponseWriter, r *http.Request) {
|
||
|
w.WriteHeader(http.StatusNotFound)
|
||
|
}
|
||
|
|
||
|
func DeleteTerraformInventoryState(w http.ResponseWriter, r *http.Request) {
|
||
|
w.WriteHeader(http.StatusNotFound)
|
||
|
}
|