mirror of
https://github.com/nasrlol/torque.git
synced 2025-11-27 23:09:21 +01:00
8 lines
103 B
Scala
8 lines
103 B
Scala
package com.nsrddyn.Traits
|
|
|
|
trait Workload {
|
|
|
|
def name: String
|
|
def run: ZIO[Any, Nothing, Unit]
|
|
}
|