Skip to content

Commit

Permalink
Fix URL refactor paths endpoints #502
Browse files Browse the repository at this point in the history
  • Loading branch information
joepio committed Jul 31, 2023
1 parent 4c7e45e commit 85b79a1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/src/urls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,12 +140,12 @@ pub const PUBLIC_AGENT: &str = "https://atomicdata.dev/agents/publicAgent";
pub const SUDO_AGENT: &str = "sudo:agent";

// Paths
pub const PATH_IMPORT: &str = "import";
pub const PATH_FETCH_BOOKMARK: &str = "fetch-bookmark";
pub const PATH_TPF: &str = "tpf";
pub const PATH_PATH: &str = "path";
pub const PATH_COMMITS: &str = "commits";
pub const PATH_ENDPOINTS: &str = "endpoints";
pub const PATH_IMPORT: &str = "/import";
pub const PATH_FETCH_BOOKMARK: &str = "/fetch-bookmark";
pub const PATH_TPF: &str = "/tpf";
pub const PATH_PATH: &str = "/path";
pub const PATH_COMMITS: &str = "/commits";
pub const PATH_ENDPOINTS: &str = "/endpoints";

pub const PATH_IMPORT: &str = "/import";
pub const PATH_FETCH_BOOKMARK: &str = "/fetch-bookmark";
Expand Down

0 comments on commit 85b79a1

Please sign in to comment.