mirror of
https://github.com/bitwarden/mobile
synced 2025-12-30 23:23:38 +00:00
10 lines
140 B
C#
10 lines
140 B
C#
using SQLite;
|
|
|
|
namespace Bit.App.Abstractions
|
|
{
|
|
public interface ISqlService
|
|
{
|
|
SQLiteConnection GetConnection();
|
|
}
|
|
}
|