mirror of
https://github.com/Quad4-Software/Reticulum-Go
synced 2026-08-29 23:48:44 -04:00
15 lines
276 B
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:]))
|
|
}
|