From a9d42058bf3e60adc3d4689281ab5257dabd54a1 Mon Sep 17 00:00:00 2001 From: Eduardo Lira Date: Fri, 5 Apr 2024 19:55:23 +0200 Subject: [PATCH] chore: Describe typical project format (#2) --- src/main.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.go b/src/main.go index c0ae278..c9f48ee 100644 --- a/src/main.go +++ b/src/main.go @@ -14,7 +14,9 @@ func run( log.Info().Str("Planet", "Earth").Msg("Hello world") - //TODO: Implement the service logic here. Likely this will involve + //TODO: Implement the service logic here. Likely this will involve creating a pub/sub and some main logic. + // The de facto standard is to have some read (zmq/IO), some handling logic (may be several items), + // and some write (zmq/IO). The go routines typically communicate via channels. return nil }