Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement OCPI 2.1.1 #47

Merged
merged 11 commits into from
Jun 7, 2023
Prev Previous commit
use detect by default
remkop22 committed Jun 7, 2023
commit 04c98a8206c8a46f1065ffaa8aabd4c662b4e789
2 changes: 1 addition & 1 deletion cli/src/cli.rs
Original file line number Diff line number Diff line change
@@ -181,9 +181,9 @@ where

#[derive(Clone, Copy, Default, ValueEnum)]
pub enum OcpiVersion {
#[default]
V221,
V211,
#[default]
Detect,
}