added StreamingKeys schema

This commit is contained in:
srgooglo 2022-05-10 20:45:45 +02:00
parent fa2e40c75d
commit d154c36062
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,10 @@
export default {
userId: {
type: String,
required: true,
},
key: {
type: String,
required: true,
}
}

View File

@ -0,0 +1 @@
export { default as StreamingKey } from "./StreamingKey"