fix comment

This commit is contained in:
Peter Rounce 2023-01-26 07:26:47 +00:00
parent b1ebacb9ce
commit 177b085c3f

View file

@ -43,7 +43,7 @@ func main() {
// lnurlw for pos // lnurlw for pos
router.Path("/ln").Methods("GET").HandlerFunc(lnurlw_response) router.Path("/ln").Methods("GET").HandlerFunc(lnurlw_response)
router.Path("/cb").Methods("GET").HandlerFunc(lnurlw_callback) router.Path("/cb").Methods("GET").HandlerFunc(lnurlw_callback)
// lnurlp for lightning address lnurlp // lnurlp for lightning address
router.Path("/.well-known/lnurlp/{name}").Methods("GET").HandlerFunc(lnurlp_response) router.Path("/.well-known/lnurlp/{name}").Methods("GET").HandlerFunc(lnurlp_response)
router.Path("/lnurlp/{name}").Methods("GET").HandlerFunc(lnurlp_callback) router.Path("/lnurlp/{name}").Methods("GET").HandlerFunc(lnurlp_callback)