-
Add this repository as a submodule to your project under the
framework
directory. -
Use it in your
build.mill
file:
// Import all the helpers from the `helpers.mill`
import $file.framework.{helpers => framework}
// Refer to the modules via `build.framework.shared`, etc.
//
// For example:
object appServerPrelude extends AppScalaModule {
override def moduleDeps = Seq(appShared.jvm, build.framework.server)
}