small pixel drawing of a pufferfish cascade

main.go

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// design touchstones
//   configured entirely via environment variables
//   minimal configurable options
//   a single global cluster
//   easy cluster formation
// todo
//   dns resolver for services

package main

import "log"

func main() {
	// agent does everything tbh
	agent := SetupAgent(DefaultConfig())
	log.Println(agent)
//	agent.Run()
}