| 123456789101112131415161718192021222324252627 |
- package ultraviolet
- type ValueStatic struct {
- value any
- }
- func NewValueStatic(value any) *ValueStatic {
- return &ValueStatic{
- value: value,
- }
- }
- func (this *ValueStatic) Start() error {
- return nil
- }
- func (this *ValueStatic) Stop() error {
- return nil
- }
- func (this *ValueStatic) Value() any {
- return this.value
- }
- func (this *ValueStatic) Invalidate() bool {
- return false
- }
|