43 lines
770 B
Go
43 lines
770 B
Go
package testdata
|
|
|
|
import (
|
|
"src.dualinventive.com/go/devsim/simulator"
|
|
)
|
|
|
|
// Info for simulator
|
|
type Info struct {
|
|
IPath string
|
|
}
|
|
|
|
var _ simulator.Info = &Info{}
|
|
|
|
// DeviceUID assigned to the simulator
|
|
func (i *Info) DeviceUID() string {
|
|
return ""
|
|
}
|
|
|
|
// Author is the e-mail address of the author who created the template.
|
|
func (i *Info) Author() string {
|
|
return ""
|
|
}
|
|
|
|
// Version is the semantic version of the template.
|
|
func (i *Info) Version() string {
|
|
return ""
|
|
}
|
|
|
|
// Path returns the location where the template files are located.
|
|
func (i *Info) Path() string {
|
|
return i.IPath
|
|
}
|
|
|
|
// Key is the unique identifier of this template.
|
|
func (i *Info) Key() string {
|
|
return ""
|
|
}
|
|
|
|
// Name returns the name of the template.
|
|
func (i *Info) Name() string {
|
|
return ""
|
|
}
|