1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-27 13:43:32 +00:00
Files
mobile/src/App/Abstractions/Services/ILogService.cs
2016-12-23 00:39:00 -05:00

8 lines
123 B
C#

namespace Bit.App.Abstractions
{
public interface ILogService
{
void WriteLine(string message);
}
}