feature: add a button to scan repositories under default clone dir (#427)

This commit is contained in:
leo 2024-08-30 16:14:10 +08:00
parent aab14784fc
commit 0d676fa3fb
No known key found for this signature in database
9 changed files with 162 additions and 3 deletions

View file

@ -0,0 +1,12 @@
using Avalonia.Controls;
namespace SourceGit.Views
{
public partial class ScanRepositories : UserControl
{
public ScanRepositories()
{
InitializeComponent();
}
}
}