Archived
1
0

Add working directory to plugin config

This commit is contained in:
Asher
2021-01-21 13:49:45 -06:00
parent 3211eb1ce5
commit 00cfd9bdf1
3 changed files with 9 additions and 1 deletions

View File

@ -212,6 +212,11 @@ export interface PluginConfig {
* All plugin logs should be logged via this logger.
*/
readonly logger: Logger
/**
* Plugins should default to this directory when applicable.
*/
readonly workingDirectory?: string
}
/**