forked from sim0n00ps/OF-DL
11 lines
219 B
C#
11 lines
219 B
C#
using OF_DL.Entities;
|
|
|
|
namespace OF_DL.Helpers.Interfaces
|
|
{
|
|
public interface IAuthHelper
|
|
{
|
|
Task SetupBrowser(bool runningInDocker);
|
|
Task<Auth?> GetAuthFromBrowser(bool isDocker = false);
|
|
}
|
|
}
|