mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-07 14:02:48 +00:00
14 lines
334 B
TypeScript
14 lines
334 B
TypeScript
// tslint:disable:no-default-export
|
|
// tslint:disable:no-magic-numbers
|
|
import {SCConfigFile} from '@openstapps/core';
|
|
import {RecursivePartial} from '@openstapps/logger/lib/common';
|
|
|
|
|
|
/**
|
|
* This is the default configuration for the university of Kassel
|
|
*/
|
|
const config: RecursivePartial<SCConfigFile> = {
|
|
};
|
|
|
|
export default config;
|