mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
13 lines
238 B
C#
13 lines
238 B
C#
using System;
|
|
using Bit.App.Abstractions;
|
|
|
|
namespace Bit.Android.Services
|
|
{
|
|
public class LogService : ILogService
|
|
{
|
|
public void WriteLine(string message)
|
|
{
|
|
Console.WriteLine(message);
|
|
}
|
|
}
|
|
}
|