| 123456789101112131415161718192021 |
- class GroupConstructor {
- constructor(
- group,
- projects,
- members,
- commit,
- interface_test,
- pipeline
- ) {
- this.group = group;
- this.projects = projects;
- this.members = members;
- this.commit = commit;
- this.test = {
- "interface-test": interface_test
- };
- this.pipeline = pipeline;
- }
- }
- module.exports = GroupConstructor;
|