1
0
mirror of https://gitlab.com/veilid/veilid.git synced 2025-04-20 23:56:42 -04:00

flutter work

This commit is contained in:
Christien Rioux 2023-07-07 19:32:59 -04:00
parent 9a65aca258
commit 9f9feeb325
3 changed files with 3 additions and 1 deletions

@ -18,6 +18,8 @@ import 'veilid_state.dart';
export 'default_config.dart';
export 'routing_context.dart';
export 'veilid_encoding.dart';
export 'veilid_config.dart';
export 'veilid_crypto.dart';
export 'veilid_table_db.dart';

@ -139,6 +139,7 @@ typedef CryptoKeyDistance = CryptoKey;
typedef TypedKey = Typed<CryptoKey>;
typedef TypedSecret = Typed<SecretKey>;
typedef TypedHashDigest = Typed<HashDigest>;
typedef TypedSignature = Typed<Signature>;

@ -3,7 +3,6 @@ import 'dart:typed_data';
import 'package:change_case/change_case.dart';
import 'package:freezed_annotation/freezed_annotation.dart';
import 'veilid_encoding.dart';
import 'veilid.dart';
part 'veilid_state.freezed.dart';