mirror of
https://github.com/GothenburgBitFactory/taskchampion-sync-server.git
synced 2025-06-26 10:54:29 +02:00
fix clap error
Signed-off-by: Cameron Wong <cam@camdar.io>
This commit is contained in:
parent
e401b67c43
commit
47978bf1df
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ async fn main() -> anyhow::Result<()> {
|
|||
.wrap(Logger::default())
|
||||
.configure(|cfg| server.config(cfg))
|
||||
});
|
||||
for listen_address in matches.get_many::<&str>("listen").unwrap() {
|
||||
for listen_address in matches.get_many::<String>("listen").unwrap() {
|
||||
log::info!("Serving on {}", listen_address);
|
||||
http_server = http_server.bind(listen_address)?
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue