Skip to content

Commit

Permalink
chore: update org name
Browse files Browse the repository at this point in the history
  • Loading branch information
Readpato committed Oct 27, 2024
1 parent c5e81d2 commit d5f9ba6
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ linters-settings:
maligned:
suggest-new: true
goimports:
local-prefixes: github.com/Schrodinger-Hat/Daje
local-prefixes: github.com/schroedinger-Hat/Daje
dupl:
threshold: 100
goconst:
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ nfpms:
# Defaults to `ProjectName`.
package_name: daje

maintainer: Schrodinger's Hat Team <info@schrodinger-hat.it>
maintainer: Schroedinger's Hat Team <dev@schroedinger-hat.org>

# Template to your app's description.
# Default is empty.
Expand Down
30 changes: 15 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@
<div align="center">
<h1>Daje</h1>

<a href="https://github.com/Schrodinger-Hat/daje">
<a href="https://github.com/schroedinger-Hat/daje">
<img src="resources/sh.png" alt="Logo" width="80" height="80">
</a>

<p align="center">
<br />
<a href="https://github.com/Schrodinger-Hat/daje/blob/main/README.md"><strong>Explore the docs »</strong></a>
<a href="https://github.com/schroedinger-Hat/daje/blob/main/README.md"><strong>Explore the docs »</strong></a>
<br />
<br />
<!-- <a href="https://daje.schrodinger-hat.it//">View Demo</a> -->
<!-- <a href="https://daje.schroedinger-hat.org//">View Demo</a> -->
·
<a href="https://github.com/Schrodinger-Hat/daje/issues">Report Bug</a>
<a href="https://github.com/schroedinger-Hat/daje/issues">Report Bug</a>
·
<a href="https://github.com/Schrodinger-Hat/daje/issues">Request Feature</a>
<a href="https://github.com/schroedinger-Hat/daje/issues">Request Feature</a>
</p>
</div>

Expand Down Expand Up @@ -74,20 +74,20 @@ Don't forget to give the project a star! Thanks again!

## Contact

Schrodinger's Hat Team - [@schrodinger_hat](mailto:wabri@schrodinger-hat.it)
Schroedinger's Hat Team - [@schrodinger_hat](mailto:dev@schroedinger-hat.org)

Project Link: [https://github.com/Schrodinger-Hat/daje](https://github.com/Schrodinger-Hat/daje)
Project Link: [https://github.com/schroedinger-Hat/daje](https://github.com/schroedinger-Hat/daje)

<!-- MARKDOWN LINKS & IMAGES -->
<!-- https://www.markdownguide.org/basic-syntax/#reference-style-links -->

[contributors-shield]: https://img.shields.io/github/contributors/Schrodinger-Hat/daje.svg?style=for-the-badge
[contributors-url]: https://github.com/Schrodinger-Hat/daje/graphs/contributors
[forks-shield]: https://img.shields.io/github/forks/Schrodinger-Hat/daje.svg?style=for-the-badge
[forks-url]: https://github.com/Schrodinger-Hat/daje/network/members
[stars-shield]: https://img.shields.io/github/stars/Schrodinger-Hat/daje?style=for-the-badge
[stars-url]: https://github.com/Schrodinger-Hat/daje/stargazers
[issues-shield]: https://img.shields.io/github/issues/Schrodinger-Hat/daje.svg?style=for-the-badge
[issues-url]: https://github.com/Schrodinger-Hat/daje/issues


[contributors-shield]: https://img.shields.io/github/contributors/schroedinger-Hat/daje.svg?style=for-the-badge
[contributors-url]: https://github.com/schroedinger-Hat/daje/graphs/contributors
[forks-shield]: https://img.shields.io/github/forks/schroedinger-Hat/daje.svg?style=for-the-badge
[forks-url]: https://github.com/schroedinger-Hat/daje/network/members
[stars-shield]: https://img.shields.io/github/stars/schroedinger-Hat/daje?style=for-the-badge
[stars-url]: https://github.com/schroedinger-Hat/daje/stargazers
[issues-shield]: https://img.shields.io/github/issues/schroedinger-Hat/daje.svg?style=for-the-badge
[issues-url]: https://github.com/schroedinger-Hat/daje/issues
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/Schrodinger-Hat/Daje
module github.com/schroedinger-Hat/Daje

go 1.18

Expand Down
2 changes: 1 addition & 1 deletion internal/config/config_folder.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os/user"
"path/filepath"

"github.com/Schrodinger-Hat/Daje/constants"
"github.com/schroedinger-Hat/Daje/constants"
)

func InitEmptyDaje() error {
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"os"

"github.com/Schrodinger-Hat/Daje/pkg/cmd/root"
"github.com/schroedinger-Hat/Daje/pkg/cmd/root"
)

type exitCode int
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/init/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/spf13/cobra"

"github.com/Schrodinger-Hat/Daje/internal/config"
"github.com/schroedinger-Hat/Daje/internal/config"
)

func NewCmdInit() *cobra.Command {
Expand Down
2 changes: 1 addition & 1 deletion pkg/cmd/root/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package root
import (
"github.com/spf13/cobra"

initCmd "github.com/Schrodinger-Hat/Daje/pkg/cmd/init"
initCmd "github.com/schroedinger-Hat/Daje/pkg/cmd/init"
)

func NewCmdRoot() *cobra.Command {
Expand Down

0 comments on commit d5f9ba6

Please sign in to comment.