12 lines
207 B
Go
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
|
||
|
}
|