mfm/src/operations/abstract_command.cr

9 lines
113 B
Crystal
Raw Normal View History

module GX
module Operations
abstract class AbstractCommand
abstract def execute()
end
end
end