mirror of
https://github.com/Unkn0wnCat/matrix-veles.git
synced 2025-04-28 09:46:51 +02:00
44 lines
1.2 KiB
Go
44 lines
1.2 KiB
Go
/*
|
|
* Copyright © 2022 Kevin Kandlbinder.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
*/
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"github.com/Unkn0wnCat/matrix-veles/internal/bot"
|
|
"github.com/Unkn0wnCat/matrix-veles/internal/db"
|
|
"github.com/Unkn0wnCat/matrix-veles/internal/web"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// runCmd is the command for running the bot
|
|
var runCmd = &cobra.Command{
|
|
Use: "run",
|
|
Short: "Runs the bot",
|
|
Long: `This runs the bot with parameters from the config file.
|
|
|
|
The bot will log in to the homeserver and start posting updates to subscribed channels.`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
db.Connect()
|
|
go web.StartServer()
|
|
bot.Run()
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(runCmd)
|
|
}
|