wormhole/backend/main.ts

13 lines
200 B
TypeScript
Raw Normal View History

/**
* Pricecaster Service.
*
* Fetcher backend component.
*
* (c) 2021 Randlabs, Inc.
*/
import { PriceFetcher } from './pricefetch'
const pricefetcher = new PriceFetcher()
pricefetcher.run()