-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor!: move to hypera.dev/axolotl/lang/v2
- Loading branch information
1 parent
97aa9ae
commit d793b77
Showing
4 changed files
with
11 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* This file is a part of hypera.dev/lib, licensed under the MIT License. | ||
* This file is a part of hypera.dev/axolotl/lang/v2, licensed under the MIT License. | ||
* | ||
* Copyright (c) 2024 Joshua Sing <[email protected]> | ||
* | ||
|
@@ -28,7 +28,7 @@ import ( | |
"fmt" | ||
"os" | ||
|
||
"hypera.dev/axolotl-lang/v2" | ||
"hypera.dev/axolotl/lang/v2" | ||
) | ||
|
||
func main() { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module hypera.dev/axolotl-lang/v2 | ||
module hypera.dev/axolotl/lang/v2 | ||
|
||
go 1.22.2 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* This file is a part of hypera.dev/axolotl-lang/v2, licensed under the MIT License. | ||
* This file is a part of hypera.dev/axolotl/lang/v2, licensed under the MIT License. | ||
* | ||
* Copyright (c) 2024 Joshua Sing <[email protected]> | ||
* | ||
|
@@ -22,7 +22,12 @@ | |
* SOFTWARE. | ||
*/ | ||
|
||
package lang | ||
// Package lang provides the locale files used by Hypera Development's Axolotl | ||
// Discord bot. | ||
// | ||
// Note: This module is not designed for use in other software, and use outside | ||
// of Axolotl is not supported. | ||
package lang // import "hypera.dev/axolotl/lang/v2" | ||
|
||
import ( | ||
"embed" | ||
|