summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorhaturatu <taro@eyes4you.org>2025-02-22 23:20:55 +0900
committerhaturatu <taro@eyes4you.org>2025-02-22 23:20:55 +0900
commit9345907a5c1737c6c2c1f8eba52a568035b08493 (patch)
tree50f0c68436e4eba8e7a72cf9876a577d0c4c6340 /examples
parenta9cdbc4e7fbdd14922ef5c96cc7a285b153bf947 (diff)
fix: all hange s\/github.com\/ponzu-cms/github.com\/haturatu\/g
Diffstat (limited to 'examples')
-rw-r--r--examples/README.md8
-rw-r--r--examples/createable/content/song.go8
-rw-r--r--examples/deleteable/content/song.go8
-rw-r--r--examples/updateable/content/song.go8
4 files changed, 16 insertions, 16 deletions
diff --git a/examples/README.md b/examples/README.md
index dd11493..42c3ee1 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -5,13 +5,13 @@ show how to use Ponzu and its features. The goal of this directory is not to hos
full Ponzu projects, but rather just a few files or a package to demonstrate interface
implementation, using hooks, adding new API endpoints, or creating/using addons.
-For full-project examples, please see the [`ponzu-cms/examples`](https://github.com/ponzu-cms/examples) repo.
+For full-project examples, please see the [`ponzu-cms/examples`](https://github.com/haturatu/examples) repo.
If you are making a contribution to the Ponzu project and are introducing a new
feature, it would be very helpful to include an example with a concrete use-case
for this directory.
### Table of Contents
-1. [Create content via HTTP API using the `api.Createable` interface](https://github.com/ponzu-cms/ponzu/tree/master/examples/createable)
-2. [Update content via HTTP API using the `api.Updateable` interface](https://github.com/ponzu-cms/ponzu/tree/master/examples/updateable)
-3. [Delete content via HTTP API using the `api.Deleteable` interface](https://github.com/ponzu-cms/ponzu/tree/master/examples/deleteable)
+1. [Create content via HTTP API using the `api.Createable` interface](https://github.com/haturatu/ponzu/tree/master/examples/createable)
+2. [Update content via HTTP API using the `api.Updateable` interface](https://github.com/haturatu/ponzu/tree/master/examples/updateable)
+3. [Delete content via HTTP API using the `api.Deleteable` interface](https://github.com/haturatu/ponzu/tree/master/examples/deleteable)
diff --git a/examples/createable/content/song.go b/examples/createable/content/song.go
index 7473e91..72c659c 100644
--- a/examples/createable/content/song.go
+++ b/examples/createable/content/song.go
@@ -6,10 +6,10 @@ import (
"net/http"
- "github.com/ponzu-cms/ponzu/management/editor"
- "github.com/ponzu-cms/ponzu/system/admin/user"
- "github.com/ponzu-cms/ponzu/system/api"
- "github.com/ponzu-cms/ponzu/system/item"
+ "github.com/haturatu/ponzu/management/editor"
+ "github.com/haturatu/ponzu/system/admin/user"
+ "github.com/haturatu/ponzu/system/api"
+ "github.com/haturatu/ponzu/system/item"
)
type Song struct {
diff --git a/examples/deleteable/content/song.go b/examples/deleteable/content/song.go
index b33bad0..8faed30 100644
--- a/examples/deleteable/content/song.go
+++ b/examples/deleteable/content/song.go
@@ -6,10 +6,10 @@ import (
"net/http"
- "github.com/ponzu-cms/ponzu/management/editor"
- "github.com/ponzu-cms/ponzu/system/admin/user"
- "github.com/ponzu-cms/ponzu/system/api"
- "github.com/ponzu-cms/ponzu/system/item"
+ "github.com/haturatu/ponzu/management/editor"
+ "github.com/haturatu/ponzu/system/admin/user"
+ "github.com/haturatu/ponzu/system/api"
+ "github.com/haturatu/ponzu/system/item"
)
type Song struct {
diff --git a/examples/updateable/content/song.go b/examples/updateable/content/song.go
index a2dc7f8..c38008e 100644
--- a/examples/updateable/content/song.go
+++ b/examples/updateable/content/song.go
@@ -7,10 +7,10 @@ import (
"net/http"
- "github.com/ponzu-cms/ponzu/management/editor"
- "github.com/ponzu-cms/ponzu/system/admin/user"
- "github.com/ponzu-cms/ponzu/system/api"
- "github.com/ponzu-cms/ponzu/system/item"
+ "github.com/haturatu/ponzu/management/editor"
+ "github.com/haturatu/ponzu/system/admin/user"
+ "github.com/haturatu/ponzu/system/api"
+ "github.com/haturatu/ponzu/system/item"
)
type Song struct {