Remove unnecessary actions/start folder

This commit is contained in:
Simon Warta 2020-08-11 08:29:54 +02:00
parent 9042b29fbb
commit 0c88e88290
2 changed files with 4 additions and 5 deletions

View File

@ -1,9 +1,9 @@
import { CosmosClient } from "@cosmjs/launchpad";
import { Webserver } from "../../api/webserver";
import * as constants from "../../constants";
import { logAccountsState } from "../../debugging";
import { Faucet } from "../../faucet";
import { Webserver } from "../api/webserver";
import * as constants from "../constants";
import { logAccountsState } from "../debugging";
import { Faucet } from "../faucet";
export async function start(args: readonly string[]): Promise<void> {
if (args.length < 1) {

View File

@ -1 +0,0 @@
export { start } from "./start";