mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
18 lines
283 B
C#
18 lines
283 B
C#
|
using System.Text;
|
|||
|
using System.Threading;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Wabbajack.CLI.Verbs
|
|||
|
{
|
|||
|
public abstract class AVerb
|
|||
|
{
|
|||
|
public int Execute()
|
|||
|
{
|
|||
|
return Run().Result;
|
|||
|
}
|
|||
|
|
|||
|
protected abstract Task<int> Run();
|
|||
|
|
|||
|
}
|
|||
|
}
|