Created
February 28, 2022 18:53
-
-
Save percybolmer/e3b4155d1ec834c7748d90c73c120060 to your computer and use it in GitHub Desktop.
Cadence added import
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
// Here we Import the Package, which will make Register Kick in | |
_ "programmingpercy/cadence-tavern/workflows/greetings" | |
_ "go.uber.org/cadence/.gen/go/cadence" | |
"go.uber.org/cadence/.gen/go/cadence/workflowserviceclient" | |
"go.uber.org/cadence/worker" | |
"github.com/uber-go/tally" | |
"go.uber.org/yarpc" | |
_ "go.uber.org/yarpc/api/transport" | |
"go.uber.org/yarpc/transport/tchannel" | |
"go.uber.org/zap" | |
"go.uber.org/zap/zapcore" | |
) | |
........ | |
unchanged |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment