Reticulum-Go/examples/pageserver/main.go

15 lines
276 B
Go

// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2024-2026 Quad4.io
// Command example-pageserver is a thin wrapper around reticulum-go pageserver.
package main
import (
"os"
"quad4/reticulum-go/pkg/cli"
)
func main() {
os.Exit(cli.RunPageserver(os.Args[1:]))
}