25 lines
No EOL
644 B
TypeScript
25 lines
No EOL
644 B
TypeScript
export const config: Config = {
|
|
name: "Example Server", // what your server should be named in BeeSrv
|
|
author: "example", // who owns this server?
|
|
channelLink: "https://t.me/example", // telegram channel link
|
|
|
|
currentBox: {
|
|
enabled: true, // if you want to serve the box, set to true
|
|
name: "Example Beebox", // what your box should be named in BeeSrv
|
|
originalAuthor: "Author", // who originally shared the beebox, if applicable
|
|
},
|
|
}
|
|
|
|
|
|
|
|
// don't change this
|
|
export interface Config {
|
|
name: string
|
|
author: string
|
|
channelLink: string
|
|
currentBox: {
|
|
enabled: boolean
|
|
name: string
|
|
originalAuthor: string
|
|
}
|
|
} |