Skip to content

Commit 577d51e

Browse files
authored
feat: Add async migration support (#470)
1 parent f517330 commit 577d51e

3 files changed

Lines changed: 1085 additions & 0 deletions

File tree

ldclient/migrations/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1+
from .async_migrator import *
12
from .migrator import *
23
from .tracker import *
34
from .types import *
45

56
__all__ = [
7+
'AsyncMigrationConfig',
8+
'AsyncMigrator',
9+
'AsyncMigratorBuilder',
10+
'AsyncMigratorFn',
611
'Migrator',
712
'MigratorBuilder',
813
'MigratorCompareFn',

0 commit comments

Comments
 (0)