Create worker module.

This commit is contained in:
Jay
2026-04-17 08:53:52 -04:00
parent 2fe269f128
commit 8a9253a9a4
2 changed files with 20 additions and 0 deletions

19
worker.go Normal file
View File

@@ -0,0 +1,19 @@
package honeybee
// Types
// Worker Implementation
type Worker interface{}
// Base Struct
type worker struct{}
// Initiator Worker
type InitiatorWorker struct{}
// Responder Worker
type ResponderWorker struct{}

1
worker_test.go Normal file
View File

@@ -0,0 +1 @@
package honeybee