Skip to content

Commit

Permalink
Adding app scaffolding for currencyscoop
Browse files Browse the repository at this point in the history
  • Loading branch information
dylburger committed Apr 14, 2023
1 parent bd7809c commit 8a0b0f6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions components/currencyscoop/app/currencyscoop.app.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { defineApp } from "@pipedream/types";

export default defineApp({
type: "app",
app: "currencyscoop",
propDefinitions: {},
methods: {
// this.$auth contains connected account data
authKeys() {
console.log(Object.keys(this.$auth));
},
},
});

0 comments on commit 8a0b0f6

Please sign in to comment.