mfm/src/operations/abstract_command.cr

8 lines
113 B
Crystal

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