Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 664 Bytes

README.md

File metadata and controls

31 lines (20 loc) · 664 Bytes

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 Execute Workflows

Create and run task workers

Create and run task workers

API Documentation

API Documentation

Setup Logging

SDK uses logrus for logging.

func init() {
	log.SetFormatter(&log.TextFormatter{})
	log.SetOutput(os.Stdout)
	log.SetLevel(log.DebugLevel)
}