forked from eva/focus-flow
7 lines
248 B
Dart
7 lines
248 B
Dart
// SPDX-FileCopyrightText: 2026 FocusFlow contributors
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
part of '../../persistence.dart';
|
|
|
|
/// Repository result wrapper for expected adapter outcomes.
|
|
typedef RepoResult<T> = Either<RepositoryFailure, T>;
|