alerts-and-other-stuff/main.go

13 lines
210 B
Go
Raw Normal View History

2025-11-23 13:54:05 +01:00
package main
import (
"log"
)
func main() {
cfg := LoadConfig()
log.Printf("Port: %s", cfg.Port)
log.Printf("Nsec: %s", cfg.NSec)
log.Printf("Npub: %s", cfg.NPub)
log.Printf("Relays: %s", cfg.Relays)
}