An error occurred while loading the file. Please try again.
repo.js 216 bytes
const Project = require("./project");
class Repo extends Project {
    constructor(ownerGitlabId, id, name, desc, logo, path) {
        super(ownerGitlabId, id, name, desc, logo, path)
module.exports = Repo