mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-04-22 01:09:07 +00:00
11 lines
177 B
JavaScript
11 lines
177 B
JavaScript
'use strict';
|
|
|
|
const Container = require('./container');
|
|
|
|
module.exports = class Root extends Container {
|
|
constructor (opts) {
|
|
super(opts);
|
|
this.type = 'root';
|
|
}
|
|
};
|