1 2 3 4 5 6 7 8 9
package com.nsrddyn.Traits import zio._ trait Workload { def name: String def run: ZIO[Any, Nothing, Unit] }