Go workspace (go.work) with 5 microservices + shared library: - gateway (8080), auth-service (8081), purchaser-service (8082) - textile-service (8083), washing-service (8084) - shared: proto definitions, common packages Infrastructure: docker-compose for local dev, K8s manifests for K3s cluster deployment (mysql/redis/etcd + traefik ingress). Frontend (iloom-flatten) added as git submodule. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
267 B
Go
14 lines
267 B
Go
package websocket
|
|
|
|
import "encoding/json"
|
|
|
|
type Event struct {
|
|
Table string `json:"table"`
|
|
Action string `json:"action"` // INSERT, UPDATE, DELETE
|
|
CompanyID string `json:"company_id"`
|
|
}
|
|
|
|
func (e *Event) Marshal() ([]byte, error) {
|
|
return json.Marshal(e)
|
|
}
|