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

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