summary refs log tree commit diff
path: root/src/util/config/types/ClientConfiguration.ts
blob: 69b5e154c1a35fb2dce79151e4b27564bbd77c5f (plain) (blame)
1
2
3
4
5
6
import { ClientReleaseConfiguration } from ".";

export class ClientConfiguration {
    releases: ClientReleaseConfiguration = new ClientReleaseConfiguration();
    useTestClient: boolean = true;
}