Start adding state classes; update dependencies

This commit is contained in:
garrettmills
2020-02-27 00:31:07 -06:00
parent e2016069f2
commit a49a26da48
14 changed files with 333 additions and 80 deletions

View File

@@ -13,6 +13,11 @@ class ServiceConfig extends Injectable {
install_to: 'multi-user.target',
}
constructor(merge_data = {}) {
super()
this._data = {...this._data, ...merge_data}
}
name(set) { return this._get_or_set('name', set) }
description(set) { return this._get_or_set('description', set) }