import { Region } from "./utils";

export type Config = {
    isLive: boolean;
    region: Region;

    username: string;
    password: string;
}
