• This project
    • Loading...
  • Sign in

이혜인 / Multiplex_Ticketing_Platform

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • Multiplex_Ticketing_Platform
  • node_modules
  • postcss
  • lib
  • comment.js
  • 신승민's avatar
    Add Package File · 2d077753
    2d077753
    신승민 authored 2022-05-21 21:35:46 +0900
comment.js 203 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
'use strict'

let Node = require('./node')

class Comment extends Node {
  constructor(defaults) {
    super(defaults)
    this.type = 'comment'
  }
}

module.exports = Comment
Comment.default = Comment