HobbyProject/Source Code/TeamHobby.HobbyProjectGenerator.Logging/Implementations/FileLogger.cs
2022-01-04 12:55:32 -08:00

25 lines
449 B
C#

using System;
using TeamHobby.HobbyProjectGenerator.Logging.Contracts;
namespace TeamHobby.HobbyProjectGenerator.Logging
{
public class FileLogger : ILogger
{
public FileLogger()
{
}
public IList<string> GetAllLogs()
{
throw new NotImplementedException();
}
public bool Log(LogEntry log)
{
throw new NotImplementedException();
}
}
}