mayhem-party/src/main.go

11 lines
118 B
Go

package src
import (
"context"
"errors"
)
func Main(ctx context.Context) error {
return errors.New("not impl")
}