mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-02 21:43:08 +00:00
21 lines
481 B
C#
21 lines
481 B
C#
using Core;
|
|
using OverwatchTranscript;
|
|
|
|
namespace CodexPlugin.OverwatchSupport
|
|
{
|
|
public class CodexTranscriptWriter
|
|
{
|
|
private readonly ITranscriptWriter transcriptWriter;
|
|
|
|
public CodexTranscriptWriter(ITranscriptWriter transcriptWriter)
|
|
{
|
|
this.transcriptWriter = transcriptWriter;
|
|
}
|
|
|
|
public void ProcessLogs(IDownloadedLog[] downloadedLogs)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|