namespace Galaeth.Services.Interfaces;
///
/// Service responsible for creating the initial user if no other users exist.
///
public interface IInitialUserService
{
///
/// If an initial user is required, then create it.
///
Task CreateFirstUserIfRequiredAsync();
}