mirror of
https://github.com/crazy-max/diun.git
synced 2025-12-21 13:23:09 +01:00
15 lines
232 B
Go
15 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
|
|
}
|