mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-30 10:19:51 +08:00
12 lines
183 B
C#
12 lines
183 B
C#
using MicaSetup.Helper;
|
|
|
|
namespace MicaSetup.Services;
|
|
|
|
public class ExplorerService : IExplorerService
|
|
{
|
|
public void Refresh()
|
|
{
|
|
ExplorerHelper.Refresh();
|
|
}
|
|
}
|