require_relative './base' module Feature class Branch < Feature::Base def execute run_cmd "git branch" end end end