lib/wlog/commands/commandable.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Wlog
# Inherit this for commands
# @author Simon Symeonidis
class Commandable
  def execute
    throw NotImplementedError
  end
end
end