added IInstallable interface and uninstall implementation for modules. Refactoring module installation to use interface still in progress.
This commit is contained in:
8
Oqtane.Server/Infrastructure/Interfaces/IInstallable.cs
Normal file
8
Oqtane.Server/Infrastructure/Interfaces/IInstallable.cs
Normal file
@ -0,0 +1,8 @@
|
||||
namespace Oqtane.Infrastructure
|
||||
{
|
||||
public interface IInstallable
|
||||
{
|
||||
bool Install(string version);
|
||||
bool Uninstall();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user