• This project
    • Loading...
  • Sign in

강동현 / nodejs-game

%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
  • nodejs-game
  • server
  • user
  • User.ts
  • 강동현's avatar
    매우 간단한 로그인 로직 작성 · 61a7ad4c
    61a7ad4c
    강동현 authored 2021-05-23 02:03:05 +0900
User.ts 127 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7
export class User {
  public readonly username: string;

  constructor(username: string) {
    this.username = username;
  }
}