refactor(common): move Policy types from types.rs into policy.rs

This commit is contained in:
michael
2026-04-27 06:22:54 -07:00
parent 57c97b492c
commit dc2c4b02cb
5 changed files with 85 additions and 72 deletions

View File

@@ -1,4 +1,5 @@
use authforge_common::types::{Credential, Method, PendingFlag, Policy, Transport};
use authforge_common::policy::Policy;
use authforge_common::types::{Credential, Method, PendingFlag, Transport};
use std::collections::HashMap;
use tokio::sync::RwLock;