Initial aether repository structure
All checks were successful
CI / build (push) Successful in 1m13s

Distributed actor system with event sourcing for Go:
- event.go - Event, ActorSnapshot, EventStore interface
- eventbus.go - EventBus, EventBroadcaster for pub/sub
- nats_eventbus.go - NATS-backed cross-node event broadcasting
- store/ - InMemoryEventStore (testing), JetStreamEventStore (production)
- cluster/ - Node discovery, leader election, shard distribution
- model/ - EventStorming model types

Extracted from arcadia as open-source infrastructure component.

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-01-08 19:30:02 +01:00
commit e9e50c021f
22 changed files with 2588 additions and 0 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
.PHONY: build test lint clean
build:
go build ./...
test:
go test ./...
lint:
golangci-lint run
clean:
go clean