machine/state.go

12 lines
204 B
Go
Raw Normal View History

2024-04-04 17:33:22 +00:00
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
2024-04-04 20:08:50 +00:00
2024-04-04 17:33:22 +00:00
package machine
type mState struct {
2024-04-04 20:08:50 +00:00
name string
2024-04-04 17:33:22 +00:00
}
func NewState(name string) *mState {
2024-04-04 20:08:50 +00:00
return &mState{name: name}
2024-04-04 17:33:22 +00:00
}