Skip to content

Commit

Permalink
Merge pull request #332 from imWildCat/bc/add-dot-beancount-file-exte…
Browse files Browse the repository at this point in the history
…nsion-support
  • Loading branch information
Kilerd authored May 29, 2024
2 parents e881964 + 40396ce commit 335ced7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/content/docs/installation/2-beancount_launch.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: This is a page in my Starlight-powered site
---


zhang 自带了 beancount 的处理器,也会在**主文件** `endpoint` 的文件后缀为 `.bc` `.bean` 时,以 **beancount 处理器**启动
zhang 自带了 beancount 的处理器,也会在**主文件** `endpoint` 的文件后缀为 `.bc`, `.bean` `.beancount` 时,以 **beancount 处理器**启动
zhang 服务端。

因此你需要在启动时指定 endpoint 为 beancount 主文件。
Expand Down
2 changes: 1 addition & 1 deletion zhang-cli/src/opendal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ impl OpendalDataSource {
.to_string()
.as_str()
{
"bc" | "bean" => true,
"bc" | "bean" | "beancount" => true,
"zhang" => false,
_ => unreachable!("not supported data format"),
};
Expand Down

0 comments on commit 335ced7

Please sign in to comment.