mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-21 05:19:42 +08:00
11 lines
164 B
JavaScript
11 lines
164 B
JavaScript
import {
|
|
CHANGE_CUR_UID
|
|
} from '../constants/action-types.js'
|
|
|
|
export function changeCurUid(curUid) {
|
|
return {
|
|
type: CHANGE_CUR_UID,
|
|
data: curUid
|
|
}
|
|
}
|