Skip to content

Commit

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

0 comments on commit 9e34c8e

Please sign in to comment.