Files
git-anchor/repo-backup-util/Actions/Pull.cs

13 lines
243 B
C#

using System.Diagnostics;
namespace GitAnchor.Actions
{
internal class Pull : BaseAction
{
public static async new Task<ActivityStatusCode> Run()
{
throw new NotImplementedException();
}
}
}