13 lines
210 B
Go
13 lines
210 B
Go
|
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
|
||
|
|
||
|
package machine
|
||
|
|
||
|
type mState struct {
|
||
|
name string
|
||
|
}
|
||
|
|
||
|
func NewState(name string) *mState {
|
||
|
return &mState{ name: name }
|
||
|
}
|
||
|
|