cyrtophora

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 38a00a4a743518b88b5f4e03c95a6e3a9514dbf3
parent e541cb00a6e7da34845d3f941cafc2908f85e28b
Author: Jackson G. Kaindume <seestem@merely.tech>
Date:   Mon, 29 Aug 2022 14:57:19 +0200

[phora] API URLs should start with /

Diffstat:
Mphora/src/api.rs | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/phora/src/api.rs b/phora/src/api.rs @@ -6,8 +6,8 @@ pub struct API { impl Default for API { fn default() -> Self { API { - version: "v0".to_string(), - accounts: "v0/accounts".to_string(), + version: "/v0".to_string(), + accounts: "/v0/accounts".to_string(), } } }