mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 01:43:16 +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.
17 lines
420 B
YAML
17 lines
420 B
YAML
type: google.api.Service
|
|
config_version: 3
|
|
|
|
http:
|
|
rules:
|
|
- selector: lnrpc.WalletUnlocker.GenSeed
|
|
get: "/v1/genseed"
|
|
- selector: lnrpc.WalletUnlocker.InitWallet
|
|
post: "/v1/initwallet"
|
|
body: "*"
|
|
- selector: lnrpc.WalletUnlocker.UnlockWallet
|
|
post: "/v1/unlockwallet"
|
|
body: "*"
|
|
- selector: lnrpc.WalletUnlocker.ChangePassword
|
|
post: "/v1/changepassword"
|
|
body: "*"
|