8 lines
163 B
Rust
8 lines
163 B
Rust
use crate::AppConfig;
|
|
|
|
impl AppConfig {
|
|
pub fn oauth_server_port(&self) -> anyhow::Result<u16> {
|
|
self.parse_env("APP_OAUTH_SERVER_PORT", 8082)
|
|
}
|
|
}
|