mirror of
https://github.com/crazy-max/diun.git
synced 2025-01-12 11:38:11 +00:00
14 lines
232 B
Go
14 lines
232 B
Go
package model
|
|
|
|
// Meta holds application details
|
|
type Meta struct {
|
|
ID string
|
|
Name string
|
|
Desc string
|
|
URL string
|
|
Logo string
|
|
Author string
|
|
Version string
|
|
UserAgent string
|
|
Hostname string
|
|
}
|