more docs.

This commit is contained in:
Erik Brakkee 2024-08-17 10:41:22 +02:00
parent 3408e2893a
commit 427ebb2c78
2 changed files with 7 additions and 0 deletions

5
pkg/comms/doc.go Normal file
View File

@ -0,0 +1,5 @@
// Communication between server on the one hand and client (wsproxy), and agent on the other.
// This is based on GOB and requires sends and receives to match. Keeping the code for sending
// and receiving together makes it easier to maintain since this code is tightly couopled and
// in this way not spread out.
package comms

2
pkg/models/doc.go Normal file
View File

@ -0,0 +1,2 @@
// shared state information between converge server, web ui, and prometheus integration.
package models