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 Mar 11, 2023
1 parent a992609 commit fe06063
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 @@ -137,9 +137,9 @@ pub const DELETE: &str = "https://atomicdata.dev/methods/delete";
pub const PUBLIC_AGENT: &str = "https://atomicdata.dev/agents/publicAgent";

// 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";

0 comments on commit fe06063

Please sign in to comment.