9 lines
104 B
Go
9 lines
104 B
Go
|
package model
|
||
|
|
||
|
type Resource struct {
|
||
|
Name string
|
||
|
Type string
|
||
|
Syntax string
|
||
|
Content string
|
||
|
}
|