5 lines
66 B
Scala
5 lines
66 B
Scala
package fmon.script
|
|
|
|
trait Action[A] {
|
|
def apply(env: A): Unit
|
|
} |