mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
16 lines
330 B
TypeScript
16 lines
330 B
TypeScript
|
|
import {ConfigLoader} from "./ConfigLoader";
|
|
|
|
export class ConfigClass{
|
|
|
|
constructor(){
|
|
ConfigLoader.init(this,__dirname+'./../../../config.json');
|
|
}
|
|
|
|
public thumbnailSizes = [200];
|
|
public imagesFolder = "/demo/images";
|
|
public thumbnailFolder = "/demo/TEMP";
|
|
}
|
|
|
|
|
|
export var Config = new ConfigClass(); |