add SvnRunner module

This commit is contained in:
Josh Holtrop 2018-02-06 21:42:02 -05:00
parent f91f98aae4
commit 9f306cfbb5
2 changed files with 12 additions and 0 deletions

View File

@ -1,2 +1,10 @@
require_relative "svi/svn_runner"
module Svi module Svi
class << self
def run
end
end
end end
Svi.run

View File

@ -0,0 +1,4 @@
module Svi
module SvnRunner
end
end