mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-03 12:02:53 +00:00
12 lines
332 B
TypeScript
12 lines
332 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;
|