ソースを参照

fix: replace speedia with infinite

ntorga 10 ヶ月 前
コミット
ad60f3616a
100 ファイル変更163 行追加163 行削除
  1. 2 2
      .vscode/settings.json
  2. 6 6
      Containerfile
  3. 2 2
      Containerfile.test
  4. 14 14
      README.md
  5. 5 5
      container/nginx/user/primary.conf
  6. 3 3
      container/supervisord.conf
  7. 3 3
      dev-build.sh
  8. 1 1
      go.mod
  9. 1 1
      os.go
  10. 1 1
      src/devUtils/testHelpers.go
  11. 1 1
      src/domain/dto/accessTokenDetails.go
  12. 1 1
      src/domain/dto/compressUnixFiles.go
  13. 1 1
      src/domain/dto/compressionProcessReport.go
  14. 1 1
      src/domain/dto/copyUnixFile.go
  15. 1 1
      src/domain/dto/createAccount.go
  16. 1 1
      src/domain/dto/createActivityRecord.go
  17. 1 1
      src/domain/dto/createCron.go
  18. 1 1
      src/domain/dto/createCustomService.go
  19. 1 1
      src/domain/dto/createDatabase.go
  20. 1 1
      src/domain/dto/createDatabaseUser.go
  21. 1 1
      src/domain/dto/createInstallableService.go
  22. 1 1
      src/domain/dto/createMapping.go
  23. 1 1
      src/domain/dto/createScheduledTask.go
  24. 2 2
      src/domain/dto/createSslPair.go
  25. 1 1
      src/domain/dto/createUnixFile.go
  26. 1 1
      src/domain/dto/createVirtualHost.go
  27. 1 1
      src/domain/dto/deleteActivityRecords.go
  28. 1 1
      src/domain/dto/deleteCron.go
  29. 1 1
      src/domain/dto/deleteMarketplaceInstalledItem.go
  30. 1 1
      src/domain/dto/deleteSslPairVhosts.go
  31. 1 1
      src/domain/dto/deleteUnixFiles.go
  32. 1 1
      src/domain/dto/extractUnixFiles.go
  33. 1 1
      src/domain/dto/installMarketplaceCatalogItem.go
  34. 2 2
      src/domain/dto/installedServiceWithMetrics.go
  35. 1 1
      src/domain/dto/login.go
  36. 1 1
      src/domain/dto/readActivityRecords.go
  37. 1 1
      src/domain/dto/updateAccount.go
  38. 1 1
      src/domain/dto/updateCron.go
  39. 2 2
      src/domain/dto/updatePhpConfigs.go
  40. 1 1
      src/domain/dto/updateProcessReport.go
  41. 1 1
      src/domain/dto/updateScheduledTask.go
  42. 1 1
      src/domain/dto/updateService.go
  43. 1 1
      src/domain/dto/updateUnixFileContent.go
  44. 1 1
      src/domain/dto/updateUnixFiles.go
  45. 1 1
      src/domain/dto/uploadProcessReport.go
  46. 1 1
      src/domain/dto/uploadUnixFiles.go
  47. 1 1
      src/domain/dto/virtualHostWithMappings.go
  48. 1 1
      src/domain/entity/accessToken.go
  49. 1 1
      src/domain/entity/account.go
  50. 1 1
      src/domain/entity/activityRecord.go
  51. 1 1
      src/domain/entity/cron.go
  52. 1 1
      src/domain/entity/database.go
  53. 1 1
      src/domain/entity/databaseUser.go
  54. 1 1
      src/domain/entity/installableService.go
  55. 1 1
      src/domain/entity/installedService.go
  56. 1 1
      src/domain/entity/mapping.go
  57. 1 1
      src/domain/entity/marketplaceCatalogItem.go
  58. 1 1
      src/domain/entity/marketplaceInstalledItem.go
  59. 1 1
      src/domain/entity/o11yOverview.go
  60. 1 1
      src/domain/entity/phpConfigs.go
  61. 2 2
      src/domain/entity/phpModule.go
  62. 1 1
      src/domain/entity/phpSetting.go
  63. 1 1
      src/domain/entity/phpVersion.go
  64. 1 1
      src/domain/entity/scheduledTask.go
  65. 1 1
      src/domain/entity/sslCertificate.go
  66. 1 1
      src/domain/entity/sslCertificate_test.go
  67. 1 1
      src/domain/entity/sslPair.go
  68. 2 2
      src/domain/entity/sslPair_test.go
  69. 1 1
      src/domain/entity/unixFile.go
  70. 1 1
      src/domain/entity/virtualHost.go
  71. 2 2
      src/domain/repository/accCmdRepo.go
  72. 2 2
      src/domain/repository/accQueryRepo.go
  73. 1 1
      src/domain/repository/activityRecordCmdRepo.go
  74. 2 2
      src/domain/repository/activityRecordQueryRepo.go
  75. 2 2
      src/domain/repository/authCmdRepo.go
  76. 2 2
      src/domain/repository/authQueryRepo.go
  77. 2 2
      src/domain/repository/cronCmdRepo.go
  78. 2 2
      src/domain/repository/cronQueryRepo.go
  79. 2 2
      src/domain/repository/databaseCmdRepo.go
  80. 2 2
      src/domain/repository/databaseQueryRepo.go
  81. 2 2
      src/domain/repository/filesCmdRepo.go
  82. 2 2
      src/domain/repository/filesQueryRepo.go
  83. 2 2
      src/domain/repository/mappingCmdRepo.go
  84. 3 3
      src/domain/repository/mappingQueryRepo.go
  85. 1 1
      src/domain/repository/marketplaceCmdRepo.go
  86. 2 2
      src/domain/repository/marketplaceQueryRepo.go
  87. 1 1
      src/domain/repository/o11yQueryRepo.go
  88. 2 2
      src/domain/repository/runtimeCmdRepo.go
  89. 2 2
      src/domain/repository/runtimeQueryRepo.go
  90. 2 2
      src/domain/repository/scheduledTaskCmdRepo.go
  91. 2 2
      src/domain/repository/scheduledTaskQueryRepo.go
  92. 2 2
      src/domain/repository/servicesCmdRepo.go
  93. 3 3
      src/domain/repository/servicesQueryRepo.go
  94. 3 3
      src/domain/repository/sslCmdRepo.go
  95. 2 2
      src/domain/repository/sslQueryRepo.go
  96. 2 2
      src/domain/repository/virtualHostCmdRepo.go
  97. 2 2
      src/domain/repository/virtualHostQueryRepo.go
  98. 2 2
      src/domain/useCase/compressUnixFiles.go
  99. 2 2
      src/domain/useCase/copyUnixFile.go
  100. 2 2
      src/domain/useCase/createAccount.go

+ 2 - 2
.vscode/settings.json

@@ -65,8 +65,8 @@
     "shellescape",
     "shirou",
     "Skippable",
-    "speedia",
-    "speedianet",
+    "infinite",
+    "goinfinite",
     "sqlite",
     "supervisorctl",
     "supervisord",

+ 6 - 6
Containerfile

@@ -1,6 +1,6 @@
 FROM docker.io/bitnami/minideb:bullseye-amd64
 
-WORKDIR /speedia
+WORKDIR /infinite
 
 RUN apt-get update && apt-get upgrade -y \
     && install_packages bind9-dnsutils build-essential ca-certificates certbot cron \
@@ -22,13 +22,13 @@ COPY /container/nginx/root/* /etc/nginx/
 
 COPY --chown=nobody:nogroup /container/nginx/user/ /app/conf/nginx/
 
-COPY /container/supervisord.conf /speedia/supervisord.conf
+COPY /container/supervisord.conf /infinite/supervisord.conf
 
-COPY /bin/os /speedia/os
+COPY /bin/os /infinite/os
 
-RUN chmod +x /speedia/os \
-    && ln -s /speedia/os /usr/bin/os
+RUN chmod +x /infinite/os \
+    && ln -s /infinite/os /usr/bin/os
 
 EXPOSE 22/tcp 80/tcp 443/tcp 3306/tcp 5432/tcp 6379/tcp 1618/tcp
 
-ENTRYPOINT ["/usr/bin/supervisord", "-c", "/speedia/supervisord.conf"]
+ENTRYPOINT ["/usr/bin/supervisord", "-c", "/infinite/supervisord.conf"]

+ 2 - 2
Containerfile.test

@@ -1,6 +1,6 @@
 FROM docker.io/bitnami/minideb:bullseye-amd64
 
-WORKDIR /speedia
+WORKDIR /infinite
 
 RUN apt-get update && apt-get upgrade -y \
     && install_packages bind9-dnsutils build-essential ca-certificates certbot cron \
@@ -24,7 +24,7 @@ COPY /container/nginx/root/* /etc/nginx/
 
 COPY --chown=nobody:nogroup /container/nginx/user/ /app/conf/nginx/
 
-COPY /container/supervisord.conf /speedia/supervisord.conf
+COPY /container/supervisord.conf /infinite/supervisord.conf
 
 RUN wget -qO go.tar.gz "https://go.dev/dl/go1.22.5.linux-amd64.tar.gz" \
     && tar -C /usr/local -xzf go.tar.gz

+ 14 - 14
README.md

@@ -2,21 +2,21 @@
 This project is under active development and is not ready for production use.
 ```
 
-# [Speedia OS](https://speedia.net/os/) · [![Roadmap](https://img.shields.io/badge/roadmap-014737)](https://github.com/orgs/speedianet/projects/1) [![Demo](https://img.shields.io/badge/read--only_demo-233876)](https://os.demo.speedia.net:1618/_/) [![Community](https://img.shields.io/badge/community-751A3D)](https://github.com/orgs/speedianet/discussions) [![Report Card](https://img.shields.io/badge/go%20report-A%2B-brightgreen)](https://goreportcard.com/report/github.com/speedianet/os) [![License](https://img.shields.io/badge/license-EPL-blue.svg)](https://github.com/speedianet/os/blob/main/LICENSE.md)
+# [Infinite OS](https://goinfinite.net/os/) · [![Roadmap](https://img.shields.io/badge/roadmap-014737)](https://github.com/orgs/goinfinite/projects/1) [![Demo](https://img.shields.io/badge/read--only_demo-233876)](https://os.demo.goinfinite.net:1618/_/) [![Community](https://img.shields.io/badge/community-751A3D)](https://github.com/orgs/goinfinite/discussions) [![Report Card](https://img.shields.io/badge/go%20report-A%2B-brightgreen)](https://goreportcard.com/report/github.com/goinfinite/os) [![License](https://img.shields.io/badge/license-EPL-blue.svg)](https://github.com/goinfinite/os/blob/main/LICENSE.md)
 
-Speedia OS is a container operating system designed so you never have to write a Dockerfile again. It comes with a user-friendly dashboard, REST API and CLI for seamless container management.
+Infinite OS is a container operating system designed so you never have to write a Dockerfile again. It comes with a user-friendly dashboard, REST API and CLI for seamless container management.
 
-A read-only demo of the dashboard is available at [https://os.demo.speedia.net:1618/\_/](https://os.demo.speedia.net:1618/_/). The default credentials are `demo` and `abc123`.
+A read-only demo of the dashboard is available at [https://os.demo.goinfinite.net:1618/\_/](https://os.demo.goinfinite.net:1618/_/). The default credentials are `demo` and `abc123`.
 
 ## Running
 
-To run Speedia OS, you can pull the image from DockerHub and use the following command:
+To run Infinite OS, you can pull the image from DockerHub and use the following command:
 
 ```
 docker run --rm --name myapp-container \
   --env 'PRIMARY_VHOST=myapp.net' \
   -p 8080:80 -p 8443:443 -p 1618:1618 \
-  -it docker.io/speedianet/os:latest
+  -it docker.io/goinfinite/os:latest
 ```
 
 In this example, the container ports 80, 443, and 1618 are mapped to host ports 8080, 8443, and 1618, respectively. If you are running multiple containers on the same host, consider using a reverse proxy to manage traffic.
@@ -43,11 +43,11 @@ os mktplace install -s wp \
 
 The API Swagger documentation is available at `https://localhost:1618/api/swagger/`.
 
-Speedia OS is compatible with Docker, Podman, Docker Swarm, Rancher, Kubernetes, Portainer, and any other tool that supports OCI-compliant containers.
+Infinite OS is compatible with Docker, Podman, Docker Swarm, Rancher, Kubernetes, Portainer, and any other tool that supports OCI-compliant containers.
 
 ## Development
 
-The public roadmap for Speedia OS is available [here](https://github.com/orgs/speedianet/projects/1). You may create issues or pull requests to contribute to the project.
+The public roadmap for Infinite OS is available [here](https://github.com/orgs/goinfinite/projects/1). You may create issues or pull requests to contribute to the project.
 
 In this repository you'll find the REST API and CLI code plus the dashboard assets. The API and CLI uses Clean Architecture, DDD, TDD, CQRS, Object Calisthenics, etc. Understand how these concepts works before proceeding is advised.
 
@@ -59,11 +59,11 @@ You must have an `.env` file in the root of the git directory **during developme
 
 If you add a new env var that is required to run the apis, please add it to the `src/presentation/cli/checkEnvs.go` file.
 
-When running in production, the `/speedia/.env` file is only used if the environment variables weren't set in the system.
+When running in production, the `/infinite/.env` file is only used if the environment variables weren't set in the system.
 
 ### Unit Testing
 
-Speedia OS commands can harm your system, so it's important to run the unit tests in a proper container:
+Infinite OS commands can harm your system, so it's important to run the unit tests in a proper container:
 
 ```
 podman build -t os-unit-test:latest -f Containerfile.test .
@@ -72,11 +72,11 @@ podman run --rm -it os-unit-test:latest
 
 Make sure you have the `.env` file in the root of the git directory before running the tests.
 
-Some tests can run in your local machine, although it's not recommended. However, if you to give it a go, make sure to create the `/speedia/` directory before running the tests:
+Some tests can run in your local machine, although it's not recommended. However, if you to give it a go, make sure to create the `/infinite/` directory before running the tests:
 
 ```
-sudo mkdir /speedia
-sudo chown $(whoami):$(whoami) /speedia
+sudo mkdir /infinite
+sudo chown $(whoami):$(whoami) /infinite
 ```
 
 ### Dev Utils
@@ -98,7 +98,7 @@ podman build -t os:latest .
 To run the project you may use the following command:
 
 ```
-podman run --name os --env 'PRIMARY_VHOST=speedia.net' --rm -p 1618:1618 -it os:latest
+podman run --name os --env 'PRIMARY_VHOST=goinfinite.net' --rm -p 1618:1618 -it os:latest
 ```
 
 When testing, consider publishing port 80 and 443 to the host so that you don't need to use a reverse proxy. You should also consider using `--env 'LOG_LEVEL=debug'` to increase the log verbosity.
@@ -117,7 +117,7 @@ The script will also create a `dev` account with the password `123456` so you ca
 
 When you need to stop the container, just CTRL+C to stop and remove it. If you don't want to remove it, just ditch the `--rm` flag from the `podman run` command in the script.
 
-If you look closely at the script, you'll see that it mounts the project's `bin` directory to the container `/speedia/bin` path. This is done to allow the container to access the binary file generated by Air on the host. The script then replace the binary file that comes with the container with the one on the `/bin` directory.
+If you look closely at the script, you'll see that it mounts the project's `bin` directory to the container `/infinite/bin` path. This is done to allow the container to access the binary file generated by Air on the host. The script then replace the binary file that comes with the container with the one on the `/bin` directory.
 
 With this approach you don't need to rebuild the container every time you change the code. Although sometimes you may want to restart the container to apply some changes, specially when changing the dependencies or system configurations. In this case, just hit CTRL+C to stop the container and run the script again.
 

+ 5 - 5
container/nginx/user/primary.conf

@@ -2,15 +2,15 @@ server {
     listen 80 reuseport;
     listen 443 ssl reuseport;
     http2 on;
-    server_name speedia.net www.speedia.net;
+    server_name goinfinite.net www.goinfinite.net;
 
     root /app/html;
 
-    ssl_certificate /app/conf/pki/speedia.net.crt;
-    ssl_certificate_key /app/conf/pki/speedia.net.key;
+    ssl_certificate /app/conf/pki/goinfinite.net.crt;
+    ssl_certificate_key /app/conf/pki/goinfinite.net.key;
 
-    access_log /app/logs/nginx/speedia.net_access.log combined buffer=512k flush=1m;
-    error_log /app/logs/nginx/speedia.net_error.log warn;
+    access_log /app/logs/nginx/goinfinite.net_access.log combined buffer=512k flush=1m;
+    error_log /app/logs/nginx/goinfinite.net_error.log warn;
 
     include /etc/nginx/std.conf;
     include /app/conf/nginx/mapping/primary.conf;

+ 3 - 3
container/supervisord.conf

@@ -7,7 +7,7 @@ password=replacedOnFirstBoot
 [supervisord]
 nodaemon=true
 user=root
-directory=/speedia
+directory=/infinite
 logfile=/dev/stdout
 logfile_maxbytes=10MB
 loglevel=WARN
@@ -22,9 +22,9 @@ password=replacedOnFirstBoot
 supervisor.rpcinterface_factory=supervisor.rpcinterface:make_main_rpcinterface
 
 [program:os-api]
-command=/speedia/os serve
+command=/infinite/os serve
 user=root
-directory=/speedia
+directory=/infinite
 autostart=true
 autorestart=true
 startretries=3

+ 3 - 3
dev-build.sh

@@ -21,9 +21,9 @@ make build
 podman build -t os:latest .
 # TODO: Re-add --env 'DEV_MODE=true' after Echo v4.13.0 release.
 podman run --name os -d \
-  --env 'LOG_LEVEL=debug' --env 'PRIMARY_VHOST=speedia.cloud' \
-  --hostname=speedia.cloud --cpus=2 --memory=2g --rm \
-  --volume "$(pwd)/bin:/speedia/bin:Z,ro,bind,slave" \
+  --env 'LOG_LEVEL=debug' --env 'PRIMARY_VHOST=goinfinite.net' \
+  --hostname=goinfinite.net --cpus=2 --memory=2g --rm \
+  --volume "$(pwd)/bin:/infinite/bin:Z,ro,bind,slave" \
   "${ports[@]}" -it os:latest
 
 echo "=> Waiting for the container to start..."

+ 1 - 1
go.mod

@@ -1,4 +1,4 @@
-module github.com/speedianet/os
+module github.com/goinfinite/os
 
 go 1.23
 

+ 1 - 1
os.go

@@ -1,6 +1,6 @@
 package main
 
-import "github.com/speedianet/os/src/presentation/cli"
+import "github.com/goinfinite/os/src/presentation/cli"
 
 func main() {
 	cli.CliInit()

+ 1 - 1
src/devUtils/testHelpers.go

@@ -5,8 +5,8 @@ import (
 	"path"
 	"runtime"
 
+	internalDbInfra "github.com/goinfinite/os/src/infra/internalDatabase"
 	"github.com/joho/godotenv"
-	internalDbInfra "github.com/speedianet/os/src/infra/internalDatabase"
 )
 
 func GenerateString(desiredSize int) string {

+ 1 - 1
src/domain/dto/accessTokenDetails.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type AccessTokenDetails struct {
 	TokenType valueObject.AccessTokenType `json:"tokenType"`

+ 1 - 1
src/domain/dto/compressUnixFiles.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type CompressUnixFiles struct {
 	SourcePaths     []valueObject.UnixFilePath       `json:"sourcePaths"`

+ 1 - 1
src/domain/dto/compressionProcessReport.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type CompressionProcessReport struct {
 	FilePathsSuccessfullyCompressed []valueObject.UnixFilePath              `json:"filePathsSuccessfullyCompressed"`

+ 1 - 1
src/domain/dto/copyUnixFile.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type CopyUnixFile struct {
 	SourcePath      valueObject.UnixFilePath `json:"sourcePath"`

+ 1 - 1
src/domain/dto/createAccount.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type CreateAccount struct {
 	Username valueObject.Username `json:"username"`

+ 1 - 1
src/domain/dto/createActivityRecord.go

@@ -1,7 +1,7 @@
 package dto
 
 import (
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type CreateActivityRecord struct {

+ 1 - 1
src/domain/dto/createCron.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type CreateCron struct {
 	Schedule valueObject.CronSchedule `json:"schedule"`

+ 1 - 1
src/domain/dto/createCustomService.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type CreateCustomService struct {
 	Name              valueObject.ServiceName     `json:"name"`

+ 1 - 1
src/domain/dto/createDatabase.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type CreateDatabase struct {
 	DatabaseName valueObject.DatabaseName `json:"dbName"`

+ 1 - 1
src/domain/dto/createDatabaseUser.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type CreateDatabaseUser struct {
 	DatabaseName valueObject.DatabaseName        `json:"dbName"`

+ 1 - 1
src/domain/dto/createInstallableService.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type CreateInstallableService struct {
 	Name              valueObject.ServiceName     `json:"name"`

+ 1 - 1
src/domain/dto/createMapping.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type CreateMapping struct {
 	Hostname               valueObject.Fqdn                `json:"hostname"`

+ 1 - 1
src/domain/dto/createScheduledTask.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type CreateScheduledTask struct {
 	Name        valueObject.ScheduledTaskName  `json:"name"`

+ 2 - 2
src/domain/dto/createSslPair.go

@@ -1,8 +1,8 @@
 package dto
 
 import (
-	"github.com/speedianet/os/src/domain/entity"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type CreateSslPair struct {

+ 1 - 1
src/domain/dto/createUnixFile.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type CreateUnixFile struct {
 	FilePath    valueObject.UnixFilePath        `json:"filePath"`

+ 1 - 1
src/domain/dto/createVirtualHost.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type CreateVirtualHost struct {
 	Hostname       valueObject.Fqdn            `json:"hostname"`

+ 1 - 1
src/domain/dto/deleteActivityRecords.go

@@ -1,7 +1,7 @@
 package dto
 
 import (
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type DeleteActivityRecords struct {

+ 1 - 1
src/domain/dto/deleteCron.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type DeleteCron struct {
 	Id      *valueObject.CronId      `json:"id"`

+ 1 - 1
src/domain/dto/deleteMarketplaceInstalledItem.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type DeleteMarketplaceInstalledItem struct {
 	InstalledId             valueObject.MarketplaceItemId

+ 1 - 1
src/domain/dto/deleteSslPairVhosts.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type DeleteSslPairVhosts struct {
 	SslPairId             valueObject.SslId  `json:"sslPairId"`

+ 1 - 1
src/domain/dto/deleteUnixFiles.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type DeleteUnixFiles struct {
 	SourcePaths []valueObject.UnixFilePath `json:"sourcePaths"`

+ 1 - 1
src/domain/dto/extractUnixFiles.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type ExtractUnixFiles struct {
 	SourcePath      valueObject.UnixFilePath `json:"sourcePath"`

+ 1 - 1
src/domain/dto/installMarketplaceCatalogItem.go

@@ -1,7 +1,7 @@
 package dto
 
 import (
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type InstallMarketplaceCatalogItem struct {

+ 2 - 2
src/domain/dto/installedServiceWithMetrics.go

@@ -1,8 +1,8 @@
 package dto
 
 import (
-	"github.com/speedianet/os/src/domain/entity"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type InstalledServiceWithMetrics struct {

+ 1 - 1
src/domain/dto/login.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type Login struct {
 	Username  valueObject.Username  `json:"username"`

+ 1 - 1
src/domain/dto/readActivityRecords.go

@@ -1,7 +1,7 @@
 package dto
 
 import (
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type ReadActivityRecords struct {

+ 1 - 1
src/domain/dto/updateAccount.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type UpdateAccount struct {
 	Id                 *valueObject.AccountId `json:"id"`

+ 1 - 1
src/domain/dto/updateCron.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type UpdateCron struct {
 	Id       valueObject.CronId        `json:"id"`

+ 2 - 2
src/domain/dto/updatePhpConfigs.go

@@ -1,8 +1,8 @@
 package dto
 
 import (
-	"github.com/speedianet/os/src/domain/entity"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type UpdatePhpConfigs struct {

+ 1 - 1
src/domain/dto/updateProcessReport.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type UpdateProcessReport struct {
 	FilePathsSuccessfullyUpdated []valueObject.UnixFilePath         `json:"filePathsSuccessfullyUpdated"`

+ 1 - 1
src/domain/dto/updateScheduledTask.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type UpdateScheduledTask struct {
 	Id     valueObject.ScheduledTaskId      `json:"id"`

+ 1 - 1
src/domain/dto/updateService.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type UpdateService struct {
 	Name              valueObject.ServiceName     `json:"name"`

+ 1 - 1
src/domain/dto/updateUnixFileContent.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type UpdateUnixFileContent struct {
 	SourcePath valueObject.UnixFilePath   `json:"sourcePath"`

+ 1 - 1
src/domain/dto/updateUnixFiles.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type UpdateUnixFiles struct {
 	SourcePaths     []valueObject.UnixFilePath       `json:"sourcePaths"`

+ 1 - 1
src/domain/dto/uploadProcessReport.go

@@ -1,6 +1,6 @@
 package dto
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type UploadProcessReport struct {
 	FileNamesSuccessfullyUploaded []valueObject.UnixFileName         `json:"fileNamesSuccessfullyUploaded"`

+ 1 - 1
src/domain/dto/uploadUnixFiles.go

@@ -1,7 +1,7 @@
 package dto
 
 import (
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type UploadUnixFiles struct {

+ 1 - 1
src/domain/dto/virtualHostWithMappings.go

@@ -1,7 +1,7 @@
 package dto
 
 import (
-	"github.com/speedianet/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/entity"
 )
 
 type VirtualHostWithMappings struct {

+ 1 - 1
src/domain/entity/accessToken.go

@@ -1,6 +1,6 @@
 package entity
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type AccessToken struct {
 	Type      valueObject.AccessTokenType `json:"type"`

+ 1 - 1
src/domain/entity/account.go

@@ -1,6 +1,6 @@
 package entity
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type Account struct {
 	Id       valueObject.AccountId `json:"id"`

+ 1 - 1
src/domain/entity/activityRecord.go

@@ -3,7 +3,7 @@ package entity
 import (
 	"errors"
 
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type ActivityRecord struct {

+ 1 - 1
src/domain/entity/cron.go

@@ -1,6 +1,6 @@
 package entity
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type Cron struct {
 	Id       valueObject.CronId       `json:"id"`

+ 1 - 1
src/domain/entity/database.go

@@ -1,6 +1,6 @@
 package entity
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type Database struct {
 	Name  valueObject.DatabaseName `json:"name"`

+ 1 - 1
src/domain/entity/databaseUser.go

@@ -1,6 +1,6 @@
 package entity
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type DatabaseUser struct {
 	Username   valueObject.DatabaseUsername    `json:"username"`

+ 1 - 1
src/domain/entity/installableService.go

@@ -1,6 +1,6 @@
 package entity
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type InstallableService struct {
 	Name               valueObject.ServiceName        `json:"name"`

+ 1 - 1
src/domain/entity/installedService.go

@@ -1,6 +1,6 @@
 package entity
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type InstalledService struct {
 	Name              valueObject.ServiceName    `json:"name"`

+ 1 - 1
src/domain/entity/mapping.go

@@ -1,6 +1,6 @@
 package entity
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type Mapping struct {
 	Id                     valueObject.MappingId           `json:"id"`

+ 1 - 1
src/domain/entity/marketplaceCatalogItem.go

@@ -1,7 +1,7 @@
 package entity
 
 import (
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type MarketplaceCatalogItem struct {

+ 1 - 1
src/domain/entity/marketplaceInstalledItem.go

@@ -1,7 +1,7 @@
 package entity
 
 import (
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type MarketplaceInstalledItem struct {

+ 1 - 1
src/domain/entity/o11yOverview.go

@@ -1,7 +1,7 @@
 package entity
 
 import (
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type O11yOverview struct {

+ 1 - 1
src/domain/entity/phpConfigs.go

@@ -1,7 +1,7 @@
 package entity
 
 import (
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type PhpConfigs struct {

+ 2 - 2
src/domain/entity/phpModule.go

@@ -4,8 +4,8 @@ import (
 	"errors"
 	"strings"
 
-	"github.com/speedianet/os/src/domain/valueObject"
-	voHelper "github.com/speedianet/os/src/domain/valueObject/helper"
+	"github.com/goinfinite/os/src/domain/valueObject"
+	voHelper "github.com/goinfinite/os/src/domain/valueObject/helper"
 )
 
 type PhpModule struct {

+ 1 - 1
src/domain/entity/phpSetting.go

@@ -4,7 +4,7 @@ import (
 	"errors"
 	"strings"
 
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type PhpSetting struct {

+ 1 - 1
src/domain/entity/phpVersion.go

@@ -1,6 +1,6 @@
 package entity
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type PhpVersion struct {
 	Value   valueObject.PhpVersion   `json:"value"`

+ 1 - 1
src/domain/entity/scheduledTask.go

@@ -1,6 +1,6 @@
 package entity
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type ScheduledTask struct {
 	Id          valueObject.ScheduledTaskId      `json:"id"`

+ 1 - 1
src/domain/entity/sslCertificate.go

@@ -5,7 +5,7 @@ import (
 	"encoding/pem"
 	"errors"
 
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type SslCertificate struct {

+ 1 - 1
src/domain/entity/sslCertificate_test.go

@@ -3,7 +3,7 @@ package entity
 import (
 	"testing"
 
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 func TestSslCertificate(t *testing.T) {

+ 1 - 1
src/domain/entity/sslPair.go

@@ -3,7 +3,7 @@ package entity
 import (
 	"time"
 
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 const EarlyRenewalThresholdHours int64 = 48

+ 2 - 2
src/domain/entity/sslPair_test.go

@@ -3,7 +3,7 @@ package entity
 import (
 	"testing"
 
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 func TestSslPair(t *testing.T) {
@@ -213,7 +213,7 @@ KPpdzvvtTnOPlC7SQZSYmdunr3Bf9b77AiC/ZidstK36dRILKz7OA54=
 
 		chainCertificates := []SslCertificate{chainCertificate}
 
-		demoHostname, err := valueObject.NewFqdn("os.demo.speedia.net")
+		demoHostname, err := valueObject.NewFqdn("os.demo.goinfinite.net")
 		if err != nil {
 			t.Errorf("ExpectedNoErrorButGot: %s", err.Error())
 		}

+ 1 - 1
src/domain/entity/unixFile.go

@@ -1,7 +1,7 @@
 package entity
 
 import (
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type UnixFile struct {

+ 1 - 1
src/domain/entity/virtualHost.go

@@ -1,6 +1,6 @@
 package entity
 
-import "github.com/speedianet/os/src/domain/valueObject"
+import "github.com/goinfinite/os/src/domain/valueObject"
 
 type VirtualHost struct {
 	Hostname       valueObject.Fqdn            `json:"hostname"`

+ 2 - 2
src/domain/repository/accCmdRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/dto"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/dto"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type AccCmdRepo interface {

+ 2 - 2
src/domain/repository/accQueryRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/entity"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type AccQueryRepo interface {

+ 1 - 1
src/domain/repository/activityRecordCmdRepo.go

@@ -1,7 +1,7 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/dto"
+	"github.com/goinfinite/os/src/domain/dto"
 )
 
 type ActivityRecordCmdRepo interface {

+ 2 - 2
src/domain/repository/activityRecordQueryRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/dto"
-	"github.com/speedianet/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/dto"
+	"github.com/goinfinite/os/src/domain/entity"
 )
 
 type ActivityRecordQueryRepo interface {

+ 2 - 2
src/domain/repository/authCmdRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/entity"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type AuthCmdRepo interface {

+ 2 - 2
src/domain/repository/authQueryRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/dto"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/dto"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type AuthQueryRepo interface {

+ 2 - 2
src/domain/repository/cronCmdRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/dto"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/dto"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type CronCmdRepo interface {

+ 2 - 2
src/domain/repository/cronQueryRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/entity"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type CronQueryRepo interface {

+ 2 - 2
src/domain/repository/databaseCmdRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/dto"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/dto"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type DatabaseCmdRepo interface {

+ 2 - 2
src/domain/repository/databaseQueryRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/entity"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type DatabaseQueryRepo interface {

+ 2 - 2
src/domain/repository/filesCmdRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/dto"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/dto"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type FilesCmdRepo interface {

+ 2 - 2
src/domain/repository/filesQueryRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/entity"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type FilesQueryRepo interface {

+ 2 - 2
src/domain/repository/mappingCmdRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/dto"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/dto"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type MappingCmdRepo interface {

+ 3 - 3
src/domain/repository/mappingQueryRepo.go

@@ -1,9 +1,9 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/dto"
-	"github.com/speedianet/os/src/domain/entity"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/dto"
+	"github.com/goinfinite/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type MappingQueryRepo interface {

+ 1 - 1
src/domain/repository/marketplaceCmdRepo.go

@@ -1,7 +1,7 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/dto"
+	"github.com/goinfinite/os/src/domain/dto"
 )
 
 type MarketplaceCmdRepo interface {

+ 2 - 2
src/domain/repository/marketplaceQueryRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/entity"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type MarketplaceQueryRepo interface {

+ 1 - 1
src/domain/repository/o11yQueryRepo.go

@@ -1,7 +1,7 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/entity"
 )
 
 type O11yQueryRepo interface {

+ 2 - 2
src/domain/repository/runtimeCmdRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/entity"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type RuntimeCmdRepo interface {

+ 2 - 2
src/domain/repository/runtimeQueryRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/entity"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type RuntimeQueryRepo interface {

+ 2 - 2
src/domain/repository/scheduledTaskCmdRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/dto"
-	"github.com/speedianet/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/dto"
+	"github.com/goinfinite/os/src/domain/entity"
 )
 
 type ScheduledTaskCmdRepo interface {

+ 2 - 2
src/domain/repository/scheduledTaskQueryRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/entity"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type ScheduledTaskQueryRepo interface {

+ 2 - 2
src/domain/repository/servicesCmdRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/dto"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/dto"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type ServicesCmdRepo interface {

+ 3 - 3
src/domain/repository/servicesQueryRepo.go

@@ -1,9 +1,9 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/dto"
-	"github.com/speedianet/os/src/domain/entity"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/dto"
+	"github.com/goinfinite/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type ServicesQueryRepo interface {

+ 3 - 3
src/domain/repository/sslCmdRepo.go

@@ -1,9 +1,9 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/dto"
-	"github.com/speedianet/os/src/domain/entity"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/dto"
+	"github.com/goinfinite/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type SslCmdRepo interface {

+ 2 - 2
src/domain/repository/sslQueryRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/entity"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type SslQueryRepo interface {

+ 2 - 2
src/domain/repository/virtualHostCmdRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/dto"
-	"github.com/speedianet/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/dto"
+	"github.com/goinfinite/os/src/domain/entity"
 )
 
 type VirtualHostCmdRepo interface {

+ 2 - 2
src/domain/repository/virtualHostQueryRepo.go

@@ -1,8 +1,8 @@
 package repository
 
 import (
-	"github.com/speedianet/os/src/domain/entity"
-	"github.com/speedianet/os/src/domain/valueObject"
+	"github.com/goinfinite/os/src/domain/entity"
+	"github.com/goinfinite/os/src/domain/valueObject"
 )
 
 type VirtualHostQueryRepo interface {

+ 2 - 2
src/domain/useCase/compressUnixFiles.go

@@ -4,8 +4,8 @@ import (
 	"errors"
 	"log"
 
-	"github.com/speedianet/os/src/domain/dto"
-	"github.com/speedianet/os/src/domain/repository"
+	"github.com/goinfinite/os/src/domain/dto"
+	"github.com/goinfinite/os/src/domain/repository"
 )
 
 func CompressUnixFiles(

+ 2 - 2
src/domain/useCase/copyUnixFile.go

@@ -4,8 +4,8 @@ import (
 	"errors"
 	"log"
 
-	"github.com/speedianet/os/src/domain/dto"
-	"github.com/speedianet/os/src/domain/repository"
+	"github.com/goinfinite/os/src/domain/dto"
+	"github.com/goinfinite/os/src/domain/repository"
 )
 
 func CopyUnixFile(

+ 2 - 2
src/domain/useCase/createAccount.go

@@ -4,8 +4,8 @@ import (
 	"errors"
 	"log"
 
-	"github.com/speedianet/os/src/domain/dto"
-	"github.com/speedianet/os/src/domain/repository"
+	"github.com/goinfinite/os/src/domain/dto"
+	"github.com/goinfinite/os/src/domain/repository"
 )
 
 func CreateAccount(

この差分においてかなりの量のファイルが変更されているため、一部のファイルを表示していません