This commit is contained in:
2026-01-23 11:20:08 +07:00
parent 314a28bf8f
commit 61b1b39b46
811 changed files with 188427 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using BlazorApp.Models;
namespace BlazorApp.Services.Interfaces
{
public interface ICanService
{
Task InitAsync();
Task<List<CanMessage>> ReadAsync();
// STREAM
event Action<CanMessage>? OnMessageReceived;
void StartStream();
void StopStream();
}
}