mirror of
https://github.com/bitwarden/android.git
synced 2025-01-10 02:07:33 +03:00
13 lines
242 B
C#
13 lines
242 B
C#
using System;
|
|
using Bit.App.Abstractions;
|
|
|
|
namespace Bit.iOS.Core.Services
|
|
{
|
|
public class LogService : ILogService
|
|
{
|
|
public void WriteLine(string message)
|
|
{
|
|
Console.WriteLine(message);
|
|
}
|
|
}
|
|
}
|