LNURL 解码器

解码 LNURL 并获取 URL。

let input = "Bitcoin fixes this"
let lnurl = try LNURLDecoder.encode(url: input)
print(lnurl)
let output = try LNURLDecoder.decode(lnurl: lnurl)
print(output)