mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
9 lines
287 B
TypeScript
9 lines
287 B
TypeScript
import Settings from '../settings';
|
|
import * as common from './common';
|
|
|
|
export default class Reader {
|
|
constructor(protected readonly _root: string, protected readonly _settings: Settings) {
|
|
this._root = common.replacePathSegmentSeparator(_root, _settings.pathSegmentSeparator);
|
|
}
|
|
}
|