dolittle/DotNET.SDK

View on GitHub
Benchmarks/Harness/IRuntimeWithMongo.cs

Summary

Maintainability
A
0 mins
Test Coverage
// Copyright (c) Dolittle. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

using System;
using System.Threading.Tasks;

namespace Dolittle.Benchmarks.Harness;

public interface IRuntimeWithMongo : IAsyncDisposable
{
    RuntimeEndpoints Endpoints { get; }
    Task Start();

    Task Stop();
}