bump, add /info endpoint, cleanup

This commit is contained in:
Aidan 2025-07-08 20:49:30 -04:00
parent 0ceb0b61b4
commit da82475262
4 changed files with 74 additions and 12 deletions

View file

@ -0,0 +1,25 @@
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
}
}