1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-17 07:45:52 +01:00
verdaccio/test/functional/lib/verdaccio-server.js

16 lines
372 B
JavaScript
Raw Normal View History

// @flow
import type {IVerdaccioConfig} from './types';
export class VerdaccioConfig implements IVerdaccioConfig {
2017-12-03 22:23:06 +01:00
storagePath: string;
configPath: string;
domainPath: string;
2017-12-03 22:23:06 +01:00
constructor(storagePath: string, configPath: string, domainPath: string) {
this.storagePath = storagePath;
this.configPath = configPath;
this.domainPath = domainPath;
}
}