ErrorLogsRepo

interface ErrorLogsRepo

Interface representing a repository for managing error logs.

Functions

Link copied to clipboard
abstract suspend fun get(planId: UUID): List<ErrorLog>

Retrieves error logs for a specific plan.

Link copied to clipboard
abstract suspend fun push(log: ErrorLog)

Pushes an error log to the repository.