mirror of
https://github.com/bitwarden/server
synced 2026-02-25 00:52:57 +00:00
11 lines
199 B
C#
11 lines
199 B
C#
using System.Threading.Tasks;
|
|
using Bit.Icons.Models;
|
|
|
|
namespace Bit.Icons.Services
|
|
{
|
|
public interface IIconFetchingService
|
|
{
|
|
Task<IconResult> GetIconAsync(string domain);
|
|
}
|
|
}
|