We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bd34c9 commit 2cfe680Copy full SHA for 2cfe680
2 files changed
component/genserver/component.go
@@ -78,7 +78,7 @@ type genServerComponent struct {
78
}
79
80
func (g *genServerComponent) Init(ctx *quacktors.Context) {
81
-
+ g.initFunction(ctx)
82
83
84
var cleanupRe = regexp.MustCompile("^(?:\\w+/)?(\\w+)(?:@([a-zA-Z0-9]+))?$")
component/genserver/component_test.go
@@ -12,7 +12,7 @@ type testGenServer struct {
12
13
14
func (t testGenServer) InitGenServer(ctx *quacktors.Context) {
15
+ fmt.Println("init")
16
17
18
func (t testGenServer) HandleGenericMessage(ctx *quacktors.Context, message quacktors.GenericMessage) {
0 commit comments