aboutsummaryrefslogtreecommitdiff
path: root/cmd/sigsum/namespace/namespace.go
blob: 3fbaf14aecb089c7f06ad33ddcfd56c0d48cd7bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package namespace

import (
	"fmt"

	"git.sigsum.org/sigsum-tools-go/pkg/policy"
)

func Main(args []string, policy policy.Policy) error {
	if len(args) != 0 {
		return fmt.Errorf("namespace: trailing arguments")
	}

	fmt.Printf("tree_leaf:v0:%d@sigsum.org", policy.ShardHint())
	return nil
}