Skip to content

Commit

Permalink
Merge pull request #750 from olafurpg/cli
Browse files Browse the repository at this point in the history
Add scalafix.cli.Cli back
  • Loading branch information
olafurpg authored Jun 13, 2018
2 parents 8490db2 + 07dbad2 commit 264a8ff
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions scalafix-cli/src/main/scala/scalafix/cli/Cli.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package scalafix.cli

import com.martiansoftware.nailgun.NGContext

object Cli {
def main(args: Array[String]): Unit = {
scalafix.v1.Main.main(args)
}
def nailMain(nGContext: NGContext): Unit = {
scalafix.v1.Main.nailMain(nGContext)
}
}

0 comments on commit 264a8ff

Please sign in to comment.