Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
slow_tests
/
inout
/
data_obj.v.templ
15
lines
·
13
sloc
·
219 bytes
·
6a32c810703f4ec0c39fe18298ebe6c40acac8f1
Raw
1
module data
2
3
//object: @object
4
//object_u: @object_u
5
//objects: @objects
6
//objects_u: @objects_u
7
8
pub struct @object {
9
pub mut:
10
id int
11
name string
12
description string
13
tags []string
14
remarks []int
15
}
16