12 lines
136 B
Ruby
12 lines
136 B
Ruby
require_relative './base'
|
|
|
|
module Feature
|
|
|
|
class Branch < Feature::Base
|
|
def execute
|
|
run_cmd "git branch"
|
|
end
|
|
end
|
|
|
|
end
|