package scalabook.path.control import scalabook.control.Monoid object PathMonoid extends Monoid[Path] { def compose(a: Path, b: Path) = Path.combine(a, b) def ident = EmptyPath }