nvim/snippets/go.json
2024-01-16 20:05:57 +08:00

15 lines
257 B
JSON

{
"class": {
"prefix": "class",
"body": [
"type $1 struct {",
" id int64",
" $2",
" createTime time.Time \/\/ 创建时间",
" updateTime time.Time \/\/ 更新时间",
"}",
"$0"
]
}
}