feudal/message/factory.go
Matthew Rich c545200ade
Some checks failed
Lint / golangci-lint (push) Failing after 9m57s
Declarative Tests / test (push) Failing after 10s
add initial commit
2024-04-04 12:43:46 -07:00

12 lines
207 B
Go

// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
package message;
import (
"github.com/golang/protobuf/proto"
)
type Factory interface {
NewMessage() proto.Message
}