mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-09 05:00:30 +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
|
|
}
|
|
}
|