# README
Swift Conductor Client SDK for Go
Install Swift Conductor Client Go Package
go get github.com/swift-conductor/conductor-client-golang
Create and start Workflows
Create and run task workers
API Documentation
Setup Logging
SDK uses logrus for logging.
func init() {
log.SetFormatter(&log.TextFormatter{})
log.SetOutput(os.Stdout)
log.SetLevel(log.DebugLevel)
}