mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
15 lines
280 B
JavaScript
Executable File
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
|
|
},
|
|
}
|
|
} |