Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
A small, dependency-free status and error taxonomy for application outcomes, with extensible codes, protocol mappings, validation, typed exceptions, and optional `Result<T, E>` integration.

[![Maven Central](https://img.shields.io/maven-central/v/dev.kiit/kiit-codes?color=blue)](https://central.sonatype.com/artifact/dev.kiit/kiit-codes)
[![Build](https://img.shields.io/github/actions/workflow/status/slatekit/kiit-codes/ci.yml?branch=main)](https://github.com/slatekit/kiit-codes/actions/workflows/ci.yml)
[![License](https://img.shields.io/github/license/slatekit/kiit-codes)](./LICENSE)
[![Build](https://img.shields.io/github/actions/workflow/status/kiitdev/kiit-codes/ci.yml?branch=main)](https://github.com/kiitdev/kiit-codes/actions/workflows/ci.yml)
[![License](https://img.shields.io/github/license/kiitdev/kiit-codes)](./LICENSE)
[![Kotlin](https://img.shields.io/badge/kotlin-multiplatform-purple.svg)](https://kotlinlang.org)

Part of [Kiit](https://www.kiit.dev) · [Docs](https://www.kiit.dev/codes) · [Blog](#)
Expand Down
6 changes: 3 additions & 3 deletions kiit-codes/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,9 @@ mavenPublishing {
}
}
scm {
url = "https://github.com/slatekit/kiit-codes"
connection = "scm:git:git://github.com/slatekit/kiit-codes.git"
developerConnection = "scm:git:ssh://git@github.com/slatekit/kiit-codes.git"
url = "https://github.com/kiitdev/kiit-codes"
connection = "scm:git:git://github.com/kiitdev/kiit-codes.git"
developerConnection = "scm:git:ssh://git@github.com/kiitdev/kiit-codes.git"
}
}
}
Expand Down
12 changes: 1 addition & 11 deletions kiit-codes/src/commonMain/kotlin/kiit/codes/Checked.kt
Original file line number Diff line number Diff line change
@@ -1,14 +1,4 @@
/**
* <kiit_header>
* url: www.kiit.dev
* git: www.github.com/slatekit/kiit
* org: www.codehelix.co
* author: Kishore Reddy
* copyright: 2016 CodeHelix Solutions Inc.
* license: refer to website and/or github
* about: A Kotlin Tool-Kit for Server + Android
* </kiit_header>
*/
/** url: www.kiit.dev */
@file:JvmName("Checks")
@file:OptIn(ExperimentalJsExport::class, ExperimentalJsStatic::class)

Expand Down
12 changes: 1 addition & 11 deletions kiit-codes/src/commonMain/kotlin/kiit/codes/Codes.kt
Original file line number Diff line number Diff line change
@@ -1,14 +1,4 @@
/**
* <kiit_header>
* url: www.kiit.dev
* git: www.github.com/slatekit/kiit
* org: www.codehelix.co
* author: Kishore Reddy
* copyright: 2016 CodeHelix Solutions Inc.
* license: refer to website and/or github
* about: A Kotlin Tool-Kit for Server + Android
* </kiit_header>
*/
/** url: www.kiit.dev */
@file:OptIn(ExperimentalJsExport::class)

package kiit.codes
Expand Down
12 changes: 1 addition & 11 deletions kiit-codes/src/commonMain/kotlin/kiit/codes/Err.kt
Original file line number Diff line number Diff line change
@@ -1,14 +1,4 @@
/**
* <kiit_header>
* url: www.kiit.dev
* git: www.github.com/slatekit/kiit
* org: www.codehelix.co
* author: Kishore Reddy
* copyright: 2016 CodeHelix Solutions Inc.
* license: refer to website and/or github
* about: A Kotlin Tool-Kit for Server + Android
* </kiit_header>
*/
/** url: www.kiit.dev */
@file:OptIn(ExperimentalJsExport::class, ExperimentalJsStatic::class)

package kiit.codes
Expand Down
12 changes: 1 addition & 11 deletions kiit-codes/src/commonMain/kotlin/kiit/codes/Status.kt
Original file line number Diff line number Diff line change
@@ -1,14 +1,4 @@
/**
* <kiit_header>
* url: www.kiit.dev
* git: www.github.com/slatekit/kiit
* org: www.codehelix.co
* author: Kishore Reddy
* copyright: 2016 CodeHelix Solutions Inc.
* license: refer to website and/or github
* about: A Kotlin Tool-Kit for Server + Android
* </kiit_header>
*/
/** url: www.kiit.dev */
@file:OptIn(ExperimentalJsExport::class, ExperimentalJsStatic::class)

package kiit.codes
Expand Down
Loading