22 lines
452 B
C#
22 lines
452 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TeamHobby.HobbyProjectGenerator.Logging
|
|
{
|
|
public class ConsoleLogger : ILogger
|
|
{
|
|
public IList<string> GetAllLogs()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public bool Log(string description)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|