-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(*): fixes after releases on staging
Multiple fixes: - Since gorelease is not using earthly, we need to have the list.go already filled before releasing. I added it in the lint/pre-commit method on earthly, so that the CI fails if not up to date. - Remove a useless temporal search attributes - Do the right translation of connectors for v2
- Loading branch information
1 parent
c54d2c1
commit d16c439
Showing
7 changed files
with
92 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,15 @@ | ||
package public | ||
|
||
import ( | ||
_ "github.com/formancehq/payments/internal/connectors/plugins/public/adyen" | ||
_ "github.com/formancehq/payments/internal/connectors/plugins/public/atlar" | ||
_ "github.com/formancehq/payments/internal/connectors/plugins/public/bankingcircle" | ||
_ "github.com/formancehq/payments/internal/connectors/plugins/public/currencycloud" | ||
_ "github.com/formancehq/payments/internal/connectors/plugins/public/dummypay" | ||
_ "github.com/formancehq/payments/internal/connectors/plugins/public/generic" | ||
_ "github.com/formancehq/payments/internal/connectors/plugins/public/mangopay" | ||
_ "github.com/formancehq/payments/internal/connectors/plugins/public/modulr" | ||
_ "github.com/formancehq/payments/internal/connectors/plugins/public/moneycorp" | ||
_ "github.com/formancehq/payments/internal/connectors/plugins/public/stripe" | ||
_ "github.com/formancehq/payments/internal/connectors/plugins/public/wise" | ||
) |