9 lines
70 B
Go
9 lines
70 B
Go
|
package db
|
||
|
|
||
|
type (
|
||
|
Owner struct {
|
||
|
Login string
|
||
|
Name string
|
||
|
}
|
||
|
)
|