Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kdevo/osprey-delight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkdevo <kdevo@users.noreply.github.com>2021-11-01 22:46:41 +0300
committerkdevo <kdevo@users.noreply.github.com>2021-11-01 22:46:41 +0300
commit3a580e4f06b2aef3972f5e0b9da67154f286f08d (patch)
tree2c9ccaad22d4b1ef3d227b6bda571e21568a7d96
parent3fb21a44c0f7e7cffd50ed6b1bbedf0feadaef1c (diff)
feat(mod): initialize theme as a module
- while still possible, there is no need for using a git submodule anymore - breaking: installation and update instructions
-rw-r--r--go.mod8
-rw-r--r--go.sum6
2 files changed, 14 insertions, 0 deletions
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..ab9a9e7
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,8 @@
+module github.com/kdevo/osprey-delight
+
+go 1.13
+
+require (
+ github.com/hugo-mods/icons v0.0.0-20210829123108-ff66eab2332c // indirect
+ github.com/hugo-mods/lazyimg v0.0.0-20211031211233-5d343cb6506b // indirect
+)
diff --git a/go.sum b/go.sum
new file mode 100644
index 0000000..b40bdb9
--- /dev/null
+++ b/go.sum
@@ -0,0 +1,6 @@
+github.com/FortAwesome/Font-Awesome v0.0.0-20210316185733-d79d85c3fad8/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo=
+github.com/aFarkas/lazysizes v0.0.0-20210408151554-27c7ceb7d737/go.mod h1:xl3heUINAn0oPowV1biDQ2Pyw1w3x66I7KEbWkaxox0=
+github.com/hugo-mods/icons v0.0.0-20210829123108-ff66eab2332c h1:8eEG4rcYj959u1AbjdPl52i0ICQ6IFpfcrisj+VJixo=
+github.com/hugo-mods/icons v0.0.0-20210829123108-ff66eab2332c/go.mod h1:sPodUyqumOYz75PKIwmqOYZXLIcLAujn7V9+1Hk4VW8=
+github.com/hugo-mods/lazyimg v0.0.0-20211031211233-5d343cb6506b h1:0MDKO30RMN6Q3D3tqSRdZpaofnS0qVRP6fIgU1XZuAA=
+github.com/hugo-mods/lazyimg v0.0.0-20211031211233-5d343cb6506b/go.mod h1:mUw/5rIlzxiJfDnKsFnZAITZ29I7n3QeDd8WwGsBmTI=