Commit930889ecRecorded25 Mar 2026Repositorysigil-wise

Rename (sigil wise) namespace to (wise)

Message

External service wrappers use their service name as the top-level namespace. Core (sigil ...) is reserved for Sigil infrastructure.

  • Move src/sigil/wise.sgl → src/wise.sgl
  • Update define-library to (wise)
  • Update test and README imports
Changed
 .gitignore               | 1 +
 README.md                | 2 +-
 src/{sigil => }/wise.sgl | 4 ++--
 test/wise-test.sgl       | 4 ++--
 4 files changed, 6 insertions(+), 5 deletions(-)
Diff
.gitignoremodified
@@ -1 +1,2 @@
1
build/
+2
lib
README.mdmodified
@@ -14,7 +14,7 @@ A Sigil library for the [Wise](https://wise.com) (formerly TransferWise) API. Pu
14
## Usage
15
16
```scheme
17
(import (sigil wise))
+17
(import (wise))
18
19
;; Create a client with your personal API token
20
(define client (wise-client token: "your-api-token"))
src/sigil/wise.sgl → src/wise.sglrenamed
@@ -1,9 +1,9 @@
1
;;; (sigil wise) - Wise (TransferWise) API client library.
+1
;;; (wise) - Wise (TransferWise) API client library.
2
;;;
3
;;; Provides functions for querying profiles, balances, and transaction
4
;;; statements from the Wise API using a personal API token.
5
6
(define-library (sigil wise)
+6
(define-library (wise)
7
(import (sigil core)
8
(sigil dict)
9
(sigil string)
test/wise-test.sglmodified
@@ -1,4 +1,4 @@
1
;;; Tests for (sigil wise)
+1
;;; Tests for (wise)
2
3
(import (sigil core)
4
(sigil dict)
@@ -6,7 +6,7 @@
6
(sigil struct)
7
(sigil json)
8
(sigil test)
9
(sigil wise))
+9
(wise))
10
11
;; ---------------------------------------------------------------
12
;; Test fixtures — JSON response samples