Skip to content

Commit bec1101

Browse files
committed
Rename to belabot
1 parent da30e5d commit bec1101

File tree

5 files changed

+27
-27
lines changed

5 files changed

+27
-27
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
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:

Cargo.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "not-yet-named-bot"
2+
name = "belabot"
33
version = "0.1.0"
44
edition = "2021"
55

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# not-yet-named-bot
1+
# belabot
22

33
A 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

src/main.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ use std::env;
22

33
use 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]
99
async 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 {

0 commit comments

Comments
 (0)