Skip to content

Commit

Permalink
#13 add outline of the multi
Browse files Browse the repository at this point in the history
  • Loading branch information
thegodenage committed Apr 2, 2024
1 parent 279f6dd commit 6334e26
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions internal/multi/multi.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package multi

import (
"context"
"sync"
)

// Spawner is responsible for spawning various instances of the waffle services.
type Spawner struct {
mu sync.Mutex
}

func NewSpawner() *Spawner {
return &Spawner{}
}

func (s *Spawner) Run(ctx context.Context) error {

}

Check failure on line 19 in internal/multi/multi.go

View workflow job for this annotation

GitHub Actions / build

missing return

0 comments on commit 6334e26

Please sign in to comment.