Skip to content

Commit 117df49

Browse files
Move images to my personal CDN
1 parent 7a80d20 commit 117df49

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
Tiny, simple, but powerful CLI framework for modern Go 🚀
1111

1212
<p align="center">
13-
<img src="https://github.com/FollowTheProcess/cli/raw/main/docs/img/demo.png" alt="demo">
13+
<img src="https://assets.followtheprocess.codes/projects/cli/demo.png" alt="demo">
1414
</p>
1515

1616
> [!WARNING]
@@ -93,7 +93,7 @@ func run() error {
9393

9494
Will get you the following:
9595

96-
![quickstart](https://github.com/FollowTheProcess/cli/raw/main/docs/img/quickstart.gif)
96+
![quickstart](https://assets.followtheprocess.codes/projects/cli/quickstart.gif)
9797

9898
> [!TIP]
9999
> See usage section below and more examples under [`./examples`](https://github.com/FollowTheProcess/cli/tree/main/examples)

examples/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,25 +18,25 @@ Not really an example, but holds the source code used to generate the cover imag
1818

1919
Implements the [quickstart] command from the main project README
2020

21-
![quickstart](../docs/img/quickstart.gif)
21+
![quickstart](https://assets.followtheprocess.codes/projects/cli/quickstart.gif)
2222

2323
## `./subcommands`
2424

2525
A CLI with multiple subcommands, each with their own flags and expected arguments. Shows how to easily store parsed flag values in an options struct and pass them around your program.
2626

27-
![subcommands](../docs/img/subcommands.gif)
27+
![subcommands](https://assets.followtheprocess.codes/projects/cli/subcommands.gif)
2828

2929
## `./namedargs`
3030

3131
A CLI with named positional arguments that may or may not have default values. Shows how to retrieve these arguments by name and use them without having to care if they were provided or you're using the default.
3232

33-
![namedargs](../docs/img/namedargs.gif)
33+
![namedargs](https://assets.followtheprocess.codes/projects/cli/namedargs.gif)
3434

3535
## `./cancel`
3636

3737
This examples shows how `cli` requiring you to pass a `context.Context` to your run functions leads to elegant and resilient cancellation and `CTRL+C` handling.
3838

39-
![cancel](../docs/img/cancel.gif)
39+
![cancel](https://assets.followtheprocess.codes/projects/cli/cancel.gif)
4040

4141
### TODO
4242

0 commit comments

Comments
 (0)