aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 06c87ce..af95971 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-Implements https://vippsas.github.io/vipps-ecom-api, more or less (see [IVippsEcommerceService.cs](https://git.ivar.systems/dotnet-vipps-ecommerce/tree/src/IOL.VippsEcommerce/IVippsEcommerceService.cs)).
+Implements https://vippsas.github.io/vipps-ecom-api, more or less (see [IVippsEcommerceService.cs](/src/IOL.VippsEcommerce/IVippsEcommerceService.cs)).
Install: `dotnet add package IOL.VippsEcommerce`
@@ -16,7 +16,7 @@ services.AddVippsEcommerceService(o => {
});
```
-See [VippsConfiguration.cs](https://git.ivarlovlie.no/dotnet-vipps-ecommerce/tree/src/IOL.VippsEcommerce/Models/VippsConfiguration.cs) for available properties.
+See [VippsConfiguration.cs](/src/IOL.VippsEcommerce/Models/VippsConfiguration.cs) for available properties.
### Caching
@@ -26,4 +26,4 @@ services.AddVippsEcommerceService(o => {
o.CacheEncryptionKey = "randomstring"; // optional key for AES encryption, if omitted the cache will be readable json with your keys exposed and everything.
o.CacheDirectoryPath = "/tmp/vippsecom"; // path to a directory that the executing process has write-access to.
});
-``` \ No newline at end of file
+```