mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-18 02:07:43 +00:00
9 lines
206 B
Dart
9 lines
206 B
Dart
import 'package:stackwallet/models/ordinal.dart';
|
|
|
|
class OrdinalsAPI {
|
|
// dummy class with sample functions to be changed / filled out
|
|
|
|
static Future<List<Ordinal>> fetch() async {
|
|
return [];
|
|
}
|
|
}
|