Adding a stub for the Mint procedure

This commit is contained in:
2026-06-17 17:43:04 +02:00
parent 2fbd5663f1
commit 4252fbc50b
+5
View File
@@ -16,6 +16,10 @@ type Minter struct {
inactiveCounters []Counter inactiveCounters []Counter
} }
func (m *Minter) Mint() string {
return ""
}
func NewMinter() *Minter { func NewMinter() *Minter {
return &Minter{ return &Minter{
oacounter: 0, oacounter: 0,
@@ -23,3 +27,4 @@ func NewMinter() *Minter {
inactiveCounters: make([]Counter), inactiveCounters: make([]Counter),
} }
} }