8 lines
78 B
Go
8 lines
78 B
Go
|
package models
|
||
|
|
||
|
type App struct {
|
||
|
ID int
|
||
|
Name string
|
||
|
Secret string
|
||
|
}
|