mirror of
https://github.com/crazy-max/diun.git
synced 2026-01-01 10:37:27 +01:00
12 lines
164 B
Go
12 lines
164 B
Go
package model
|
|
|
|
// App holds application details
|
|
type App struct {
|
|
ID string
|
|
Name string
|
|
Desc string
|
|
URL string
|
|
Author string
|
|
Version string
|
|
}
|