Migrate module path from kyle/ to mc/ org

All import paths updated from git.wntrmute.dev/kyle/mcias to
git.wntrmute.dev/mc/mcias to match the Gitea organization.
Includes main module and clients/go submodule.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-27 02:03:46 -07:00
parent 9b521f3d99
commit 41d01edfb4
80 changed files with 210 additions and 207 deletions

View File

@@ -29,7 +29,7 @@ set_pg_creds(account_id, host, port, database, username, password) → void
| `MciasConflictError` | 409 | Conflict (e.g. duplicate username) |
| `MciasServerError` | 5xx | Unexpected server error |
`testdata/` contains canonical JSON response fixtures shared across language tests.
- `go/` — Go module `git.wntrmute.dev/kyle/mcias/clients/go`
- `go/` — Go module `git.wntrmute.dev/mc/mcias/clients/go`
- `rust/` — Rust crate `mcias-client`
- `lisp/` — ASDF system `mcias-client`
- `python/` — Python package `mcias_client`

View File

@@ -9,13 +9,13 @@ Go client library for the [MCIAS](../../README.md) identity and access managemen
## Installation
```sh
go get git.wntrmute.dev/kyle/mcias/clients/go
go get git.wntrmute.dev/mc/mcias/clients/go
```
## Quick Start
```go
import "git.wntrmute.dev/kyle/mcias/clients/go/mcias"
import "git.wntrmute.dev/mc/mcias/clients/go/mcias"
// Connect to the MCIAS server.
client, err := mcias.New("https://auth.example.com", mcias.Options{})

View File

@@ -11,7 +11,7 @@ import (
"strings"
"testing"
mcias "git.wntrmute.dev/kyle/mcias/clients/go"
mcias "git.wntrmute.dev/mc/mcias/clients/go"
)
// ---------------------------------------------------------------------------

View File

@@ -1,3 +1,3 @@
module git.wntrmute.dev/kyle/mcias/clients/go
module git.wntrmute.dev/mc/mcias/clients/go
go 1.21

View File