mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 18:10:34 +01:00
4a0025c1b7
As a preparation for the migration to the grpc-gateway/v2 library we declare each service's REST annotations in its own file. This is optional in the v1 library but mandatory in v2.
19 lines
653 B
YAML
19 lines
653 B
YAML
type: google.api.Service
|
|
config_version: 3
|
|
|
|
http:
|
|
rules:
|
|
- selector: wtclientrpc.WatchtowerClient.AddTower
|
|
post: "/v2/watchtower/client"
|
|
body: "*"
|
|
- selector: wtclientrpc.WatchtowerClient.RemoveTower
|
|
delete: "/v2/watchtower/client/{pubkey}"
|
|
- selector: wtclientrpc.WatchtowerClient.ListTowers
|
|
get: "/v2/watchtower/client"
|
|
- selector: wtclientrpc.WatchtowerClient.GetTowerInfo
|
|
get: "/v2/watchtower/client/info/{pubkey}"
|
|
- selector: wtclientrpc.WatchtowerClient.Stats
|
|
get: "/v2/watchtower/client/stats"
|
|
- selector: wtclientrpc.WatchtowerClient.Policy
|
|
get: "/v2/watchtower/client/policy"
|