mirror of https://github.com/sbt/sbt.git
5 lines
55 B
Scala
5 lines
55 B
Scala
|
|
package sbt
|
||
|
|
|
||
|
|
trait Show[T] {
|
||
|
|
def apply(t: T): String
|
||
|
|
}
|