mirror of
https://github.com/luscis/openlan.git
synced 2025-10-05 08:36:59 +08:00
16 lines
255 B
Go
Executable File
16 lines
255 B
Go
Executable File
package schema
|
|
|
|
import "github.com/luscis/openlan/pkg/libol"
|
|
|
|
type Version struct {
|
|
Version string `json:"version"`
|
|
Date string `json:"date"`
|
|
}
|
|
|
|
func NewVersionSchema() Version {
|
|
return Version{
|
|
Version: libol.Version,
|
|
Date: libol.Date,
|
|
}
|
|
}
|