// // Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License. // namespace Astral.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(); }