Skip to content

Commit 89fc4c7

Browse files
committed
Change default URI
1 parent c65be1e commit 89fc4c7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ USAGE:
1515
atmos COMMAND [options...]
1616

1717
VERSION:
18-
0.1.0
18+
0.1.1
1919

2020
COMMANDS:
2121
profile, p, pr, pro, prof Fetch my profile.
2222
divelog, d, di, div, dive Fetch my divelogs.
2323
help, h Shows a list of commands or help for one command
2424

2525
GLOBAL OPTIONS:
26-
--server value, -s value URI to ATMOS API (default: "http://localhost/api/v0") [$ATMOS_API]
26+
--server value, -s value Set FQDN for ATMOS Platform (default: "http://localhost:8080") [$ATMOS_API]
2727
--help, -h show help (default: false)
2828
--version, -v print the version (default: false)
2929
```

internal/domain/flags.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const (
77

88
// Global: Usage Flags
99
const (
10-
ServerFlagUsage string = "URI to ATMOS API"
10+
ServerFlagUsage string = "Set FQDN for ATMOS Platform"
1111
)
1212

1313
// Global: Alias Flags
@@ -17,7 +17,7 @@ var (
1717

1818
// Global: Value Flags
1919
const (
20-
ServerFlagValue string = "http://localhost/api/v0"
20+
ServerFlagValue string = "http://localhost:8080"
2121
)
2222

2323
// Name Flags

0 commit comments

Comments
 (0)