From 61b2e54dedad005689c83cfa6f780b187c681fb6 Mon Sep 17 00:00:00 2001 From: erik Date: Wed, 21 Jun 2023 14:06:51 +0200 Subject: [PATCH] Use common ns for paths --- .../domaindrivenarchitecture/activity_pub_poc/common.clj | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/main/clj/org/domaindrivenarchitecture/activity_pub_poc/common.clj diff --git a/src/main/clj/org/domaindrivenarchitecture/activity_pub_poc/common.clj b/src/main/clj/org/domaindrivenarchitecture/activity_pub_poc/common.clj new file mode 100644 index 0000000..baa9523 --- /dev/null +++ b/src/main/clj/org/domaindrivenarchitecture/activity_pub_poc/common.clj @@ -0,0 +1,7 @@ +(ns org.domaindrivenarchitecture.activity-pub-poc.common) + +(def resource-path "src/main/resources/") + +(def activitystreams-ttl (str resource-path "activitystreams_2.0_owl.ttl")) +(def rdf-schema-ttl (str resource-path "rdf_schema_1.1.ttl")) +(def rdf-syntax-ttl (str resource-path "rdf_syntax_ns_22.ttl")) \ No newline at end of file