File tree Expand file tree Collapse file tree 5 files changed +27
-27
lines changed
Expand file tree Collapse file tree 5 files changed +27
-27
lines changed Original file line number Diff line number Diff line change 2626 - uses : actions/checkout@v2
2727 - uses : taiki-e/upload-rust-binary-action@v1
2828 with :
29- bin : not-yet-named-bot
29+ bin : belabot
3030 tar : unix
3131 zip : windows
3232 env :
Original file line number Diff line number Diff line change 11[package ]
2- name = " not-yet-named-bot "
2+ name = " belabot "
33version = " 0.1.0"
44edition = " 2021"
55
Original file line number Diff line number Diff line change 1- # not-yet-named-bot
1+ # belabot
22
33A chat bot alternative to control [ belaUI] ( https://github.com/BELABOX/belaUI ) in combination with [ BELABOX Cloud] ( https://cloud.belabox.net )
44
55## How do i run this?
66
7- Just download the latest binary from [ releases] ( https://github.com/715209/not-yet-named-bot /releases ) and execute it.
7+ Just download the latest binary from [ releases] ( https://github.com/715209/belabot /releases ) and execute it.
88
99## Config
1010
Original file line number Diff line number Diff line change @@ -2,18 +2,18 @@ use std::env;
22
33use anyhow:: Result ;
44
5- use not_yet_named_bot :: { Bot , Settings } ;
6- use tracing_subscriber:: filter:: { EnvFilter , LevelFilter } ;
5+ use belabot :: { Bot , Settings } ;
6+ use tracing_subscriber:: filter:: EnvFilter ;
77
88#[ tokio:: main]
99async fn main ( ) -> Result < ( ) > {
1010 if env:: var ( "RUST_LOG" ) . is_err ( ) {
11- env:: set_var ( "RUST_LOG" , "not_yet_named_bot =info" ) ;
11+ env:: set_var ( "RUST_LOG" , "belabot =info" ) ;
1212 }
1313
1414 if cfg ! ( windows) {
1515 tracing_subscriber:: fmt ( )
16- . with_env_filter ( tracing_subscriber :: EnvFilter :: from_default_env ( ) )
16+ . with_env_filter ( EnvFilter :: from_default_env ( ) )
1717 . with_ansi ( false )
1818 . init ( ) ;
1919 } else {
You can’t perform that action at this time.
0 commit comments