• This project
    • Loading...
  • Sign in

김명현 / Classroom-Reservation

%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
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • Classroom-Reservation
  • api
  • models
  • response.go
  • freckie's avatar
    Add: first commit · aed9cf38
    aed9cf38
    freckie authored 2020-12-07 02:48:43 +0900
response.go 151 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7
package models

type Response struct {
	Status  int         `json:"status"`
	Message string      `json:"message"`
	Data    interface{} `json:"data"`
}