Introduce the `relayinfo` package with `NIP-11` utilities, including `Fees`, `Limits`, and `NIPs` structures. Add utility modules for handling numbers, timestamps, and kinds. Integrate functionality for fetching and managing relay information.
13 lines
186 B
Go
13 lines
186 B
Go
package version
|
|
|
|
import (
|
|
_ "embed"
|
|
)
|
|
|
|
//go:embed version
|
|
var V string
|
|
|
|
var Description = "relay powered by the orly framework https://next.orly.dev"
|
|
|
|
var URL = "https://next.orly.dev"
|