// SPDX-License-Identifier: Apache-2.0

/**
 * Represents a service.
 *
 * @remarks
 * This interface defines the contract for a service in the application.
 * Services are responsible for performing specific tasks or providing specific functionality.
 * Implementations of this interface should provide the necessary logic to fulfill the service's purpose.
 */
export interface IService {
    
}
