• This project
    • Loading...
  • Sign in

윤준석 / mamuri-bot

%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
  • mamuri-bot
  • joongna
  • model
  • item.go
  • 윤준석's avatar
    FIX: item model file from model.go to item.go · 018e1e7f
    018e1e7f Browse Directory
    윤준석 authored 2022-05-10 23:57:41 +0900
item.go 205 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9
package model

type Item struct {
	Platform  string `json:"platform"`
	Name      string `json:"name"`
	Price     uint   `json:"price"`
	Url       string `json:"url"`
	ExtraInfo string `json:"extraInfo"`
}