feudal/message/factory.go

12 lines
207 B
Go
Raw Normal View History

2024-04-04 19:43:46 +00:00
// 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
}