Skip to content

Commit 0333f20

Browse files
update github handle
1 parent 210bb12 commit 0333f20

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Dev Tools.
77
Provide a template to setup a project in a specified programming language.
88

99
```sh
10-
nix flake init -t github:minizilla/dt#{programming-language}
10+
nix flake init -t github:smoothprogrammer/dt#{programming-language}
1111
```
1212

1313
## Bin
@@ -16,5 +16,5 @@ Provide a binary to work with a specified programming language.
1616
This is useful when working with a non-Nix Flake project.
1717

1818
```sh
19-
nix flake init -t github:minizilla/dt#bin-{programming-language}
19+
nix flake init -t github:smoothprogrammer/dt#bin-{programming-language}
2020
```

template/go/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
module github.com/minizilla/goproject
1+
module github.com/smoothprogrammer/goproject
22

33
go 1.24
44

5-
require github.com/minizilla/testr v0.4.0
5+
require github.com/smoothprogrammer/testr v1.0.0

template/go/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github.com/minizilla/testr v0.4.0 h1:pHy2U8TFgpBpQS15ZMqQS3h2/msyZ0GKSpGW6xMBabA=
2-
github.com/minizilla/testr v0.4.0/go.mod h1:DdZPGzN8GgQbC2QZ24W/BaWI88xCKUKQ6YLcV/g3hvQ=
1+
github.com/smoothprogrammer/testr v1.0.0 h1:+CZAZslm8fphgzLBcwWFqlw5YTdktkjW6mq+Au7UVEM=
2+
github.com/smoothprogrammer/testr v1.0.0/go.mod h1:g2nz0OlzTquUuhUgO/uu+/1Akxb7eKirR0nwQdjRT2g=

template/go/main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"testing"
55

6-
"github.com/minizilla/testr"
6+
"github.com/smoothprogrammer/testr"
77
)
88

99
func TestGreet(t *testing.T) {

template/java/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
<groupId>dev.minizilla</groupId>
4+
<groupId>dev.smoothprogrammer</groupId>
55
<artifactId>javaproject</artifactId>
66
<packaging>jar</packaging>
77
<version>1.0-SNAPSHOT</version>
88
<name>javaproject</name>
9-
<url>https://minizilla.dev</url>
9+
<url>https://smoothprogrammer.dev</url>
1010

1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -28,7 +28,7 @@
2828
<artifactId>exec-maven-plugin</artifactId>
2929
<version>3.5.0</version>
3030
<configuration>
31-
<mainClass>dev.minizilla.javaproject.App</mainClass>
31+
<mainClass>dev.smoothprogrammer.javaproject.App</mainClass>
3232
</configuration>
3333
<executions>
3434
<execution>

template/java/src/main/java/dev/minizilla/javaproject/App.java renamed to template/java/src/main/java/dev/smoothprogrammer/javaproject/App.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.minizilla.javaproject;
1+
package dev.smoothprogrammer.javaproject;
22

33
public class App {
44
public static void main(String[] args) {

template/java/src/test/java/dev/minizilla/javaproject/AppTest.java renamed to template/java/src/test/java/dev/smoothprogrammer/javaproject/AppTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package dev.minizilla.javaproject;
1+
package dev.smoothprogrammer.javaproject;
22

33
import junit.framework.Test;
44
import junit.framework.TestCase;

0 commit comments

Comments
 (0)