Skip to content

Commit

Permalink
Adding app scaffolding for conveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
dylburger committed Jul 12, 2022
1 parent e324eba commit ef80ce5
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions components/conveyor/app/conveyor.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: "conveyor",
propDefinitions: {},
methods: {
// this.$auth contains connected account data
authKeys() {
console.log(Object.keys(this.$auth));
},
},
});

0 comments on commit ef80ce5

Please sign in to comment.