21 lines
405 B
Go
21 lines
405 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"gitea.konchin.com/go2025/backend/utils"
|
|
"github.com/uptrace/bunrouter"
|
|
)
|
|
|
|
// GetAliasUpdate
|
|
//
|
|
// @summary Get notification when alias update
|
|
// @description get update notification using websocket
|
|
// @router /api/alias-update [get]
|
|
func (self *Handlers) GetAliasUpdate(
|
|
w http.ResponseWriter, req bunrouter.Request,
|
|
) error {
|
|
// TODO
|
|
return utils.Success(w)
|
|
}
|