-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding a new source type, Fasten. Used to store resources that are cr…
…eated within the Fasten UI.
- Loading branch information
Showing
4 changed files
with
27 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package fasten | ||
|
||
import ( | ||
"context" | ||
"github.com/fastenhealth/fasten-sources/clients/internal/manual" | ||
"github.com/fastenhealth/fasten-sources/clients/models" | ||
"github.com/fastenhealth/fasten-sources/pkg" | ||
"github.com/sirupsen/logrus" | ||
"net/http" | ||
) | ||
|
||
type FastenClient struct { | ||
models.SourceClient | ||
} | ||
|
||
func GetSourceClientFasten(env pkg.FastenLighthouseEnvType, ctx context.Context, globalLogger logrus.FieldLogger, sourceCreds models.SourceCredential, testHttpClient ...*http.Client) (models.SourceClient, error) { | ||
manualClient, err := manual.GetSourceClientManual(env, ctx, globalLogger, sourceCreds, testHttpClient...) | ||
return &FastenClient{ | ||
manualClient, | ||
}, err | ||
} |
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