1
0
mirror of https://github.com/ragestudio/comty.git synced 2025-06-19 15:34:16 +00:00

15 lines
280 B
JavaScript
Executable File

export default {
name: "Config",
collection: "config",
schema: {
key: {
type: String,
required: true
},
value: {
// type can be anything
type: Object,
required: true
},
}
}