mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2024-12-25 12:57:17 +00:00
38c61f6f25
This also reduces the time required spend in the VM
7 lines
117 B
Go
7 lines
117 B
Go
package vm
|
|
|
|
type VirtualMachine interface {
|
|
Env() Environment
|
|
Run(context *Context, data []byte) ([]byte, error)
|
|
}
|