mirror of
https://github.com/babalae/better-genshin-impact
synced 2025-01-09 04:19:47 +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();
|
|
}
|
|
}
|