mirror of
https://github.com/SigNoz/signoz.git
synced 2026-04-10 06:00:19 +01:00
Some checks failed
build-staging / prepare (push) Has been cancelled
build-staging / js-build (push) Has been cancelled
build-staging / go-build (push) Has been cancelled
build-staging / staging (push) Has been cancelled
Release Drafter / update_release_draft (push) Has been cancelled
* feat: adding types changes and openapi spec * refactor: review changes * feat: generating OpenAPI spec * refactor: updating create account types * refactor: removing email domain function
63 lines
1.5 KiB
Go
63 lines
1.5 KiB
Go
package implcloudintegration
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/SigNoz/signoz/pkg/modules/cloudintegration"
|
|
)
|
|
|
|
type handler struct{}
|
|
|
|
func NewHandler() cloudintegration.Handler {
|
|
return &handler{}
|
|
}
|
|
|
|
func (handler *handler) GetConnectionCredentials(http.ResponseWriter, *http.Request) {
|
|
panic("unimplemented")
|
|
}
|
|
|
|
func (handler *handler) CreateAccount(writer http.ResponseWriter, request *http.Request) {
|
|
// TODO implement me
|
|
panic("implement me")
|
|
}
|
|
|
|
func (handler *handler) ListAccounts(writer http.ResponseWriter, request *http.Request) {
|
|
// TODO implement me
|
|
panic("implement me")
|
|
}
|
|
|
|
func (handler *handler) GetAccount(writer http.ResponseWriter, request *http.Request) {
|
|
// TODO implement me
|
|
panic("implement me")
|
|
}
|
|
|
|
func (handler *handler) UpdateAccount(writer http.ResponseWriter, request *http.Request) {
|
|
// TODO implement me
|
|
panic("implement me")
|
|
}
|
|
|
|
func (handler *handler) DisconnectAccount(writer http.ResponseWriter, request *http.Request) {
|
|
// TODO implement me
|
|
panic("implement me")
|
|
}
|
|
|
|
func (handler *handler) ListServicesMetadata(writer http.ResponseWriter, request *http.Request) {
|
|
// TODO implement me
|
|
panic("implement me")
|
|
}
|
|
|
|
func (handler *handler) GetService(writer http.ResponseWriter, request *http.Request) {
|
|
// TODO implement me
|
|
panic("implement me")
|
|
}
|
|
|
|
func (handler *handler) UpdateService(writer http.ResponseWriter, request *http.Request) {
|
|
// TODO implement me
|
|
panic("implement me")
|
|
}
|
|
|
|
func (handler *handler) AgentCheckIn(writer http.ResponseWriter, request *http.Request) {
|
|
// TODO implement me
|
|
panic("implement me")
|
|
}
|