blob: b562dce4d572b8523e76a527b118619a4c78de00 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import {
ActivityCreate,
VideoTorrentObject,
VideoChannelObject
} from '../../../shared'
function processFlagActivity (activity: ActivityCreate) {
return Promise.resolve(undefined)
}
// ---------------------------------------------------------------------------
export {
processFlagActivity
}
// ---------------------------------------------------------------------------
|