Compare commits

..

8 commits

Author SHA1 Message Date
fca2564987 Merge branch 'feature/1-add-support-for-fs-crud' of code.apps.glenux.net:glenux/mfm into feature/1-add-support-for-fs-crud
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2023-11-26 16:33:26 +01:00
7dec0da91c feat: add scaffold for operations (command design pattern) 2023-11-26 16:32:57 +01:00
de8c777a3c feat: add base structure for commands 2023-11-26 16:32:57 +01:00
1ce05411e0 feat: add scaffold for operations (command design pattern) 2023-11-26 16:32:57 +01:00
9cce357dd0 Merge branch 'feature/1-add-support-for-fs-crud' of code.apps.glenux.net:glenux/mfm into feature/1-add-support-for-fs-crud
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2023-11-26 16:05:17 +01:00
fb168d5308 feat: add base structure for commands 2023-11-26 16:05:01 +01:00
4730c77992 feat: add scaffold for operations (command design pattern) 2023-11-24 20:15:44 +01:00
1697750abd feat: add scaffold for operations (command design pattern)
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2023-11-21 00:26:17 +01:00
5 changed files with 60 additions and 0 deletions

View file

@ -0,0 +1,12 @@
require "./abstract_command"
module GX
module Operations
class FilesystemCreateCommand < AbstractCommand
def execute()
raise "Not Implemented"
end
end
end
end

View file

@ -0,0 +1,12 @@
require "./abstract_command"
module GX
module Operations
class FilesystemDeleteCommand < AbstractCommand
def execute()
raise "Not Implemented"
end
end
end
end

View file

@ -0,0 +1,12 @@
require "./abstract_command"
module GX
module Operations
class FilesystemEditCommand < AbstractCommand
def execute()
raise "Not Implemented"
end
end
end
end

View file

@ -0,0 +1,12 @@
require "./abstract_command"
module GX
module Operations
class FilesystemMountCommand < AbstractCommand
def execute()
raise "Not Implemented"
end
end
end
end

View file

@ -0,0 +1,12 @@
require "./abstract_command"
module GX
module Operations
class FilesystemUmountCommand < AbstractCommand
def execute()
raise "Not Implemented"
end
end
end
end