1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

sync: make sync.Direction public (#19047)

This commit is contained in:
kbkpbot 2023-08-03 14:22:48 +08:00 committed by GitHub
parent 8ee1667a9a
commit fe9bdd4168
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ mut:
nxt &Subscription = unsafe { nil } nxt &Subscription = unsafe { nil }
} }
enum Direction { pub enum Direction {
pop pop
push push
} }