Skip to content
Snippets Groups Projects
Verified Commit 619f66cc authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

build: moved project

parent d60458f8
Branches
Tags 1.8.0
No related merge requests found
Pipeline #2803 passed
...@@ -2,7 +2,7 @@ package main ...@@ -2,7 +2,7 @@ package main
import ( import (
"context" "context"
"git.kuschku.de/justjanne/imghost-frontend/shared" "git.kuschku.de/justjanne/imghost/shared"
"github.com/hibiken/asynq" "github.com/hibiken/asynq"
"github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promauto" "github.com/prometheus/client_golang/prometheus/promauto"
......
...@@ -4,7 +4,7 @@ import ( ...@@ -4,7 +4,7 @@ import (
"context" "context"
"encoding/json" "encoding/json"
"fmt" "fmt"
"git.kuschku.de/justjanne/imghost-frontend/shared" "git.kuschku.de/justjanne/imghost/shared"
"github.com/hibiken/asynq" "github.com/hibiken/asynq"
"github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus"
"os" "os"
......
...@@ -2,7 +2,7 @@ package main ...@@ -2,7 +2,7 @@ package main
import ( import (
"fmt" "fmt"
"git.kuschku.de/justjanne/imghost-frontend/shared" "git.kuschku.de/justjanne/imghost/shared"
"github.com/justjanne/imgconv" "github.com/justjanne/imgconv"
"gopkg.in/gographics/imagick.v3/imagick" "gopkg.in/gographics/imagick.v3/imagick"
"path/filepath" "path/filepath"
......
...@@ -3,7 +3,7 @@ package main ...@@ -3,7 +3,7 @@ package main
import ( import (
"context" "context"
"database/sql" "database/sql"
"git.kuschku.de/justjanne/imghost-frontend/shared" "git.kuschku.de/justjanne/imghost/shared"
"github.com/hibiken/asynq" "github.com/hibiken/asynq"
_ "github.com/lib/pq" _ "github.com/lib/pq"
"log" "log"
......
{ {
"name": "imghost-frontend", "name": "imghost",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
......
...@@ -2,7 +2,7 @@ package main ...@@ -2,7 +2,7 @@ package main
import ( import (
"fmt" "fmt"
"git.kuschku.de/justjanne/imghost-frontend/shared" "git.kuschku.de/justjanne/imghost/shared"
_ "github.com/lib/pq" _ "github.com/lib/pq"
"net/http" "net/http"
"os" "os"
......
...@@ -2,7 +2,7 @@ package main ...@@ -2,7 +2,7 @@ package main
import ( import (
"database/sql" "database/sql"
"git.kuschku.de/justjanne/imghost-frontend/shared" "git.kuschku.de/justjanne/imghost/shared"
"net/http" "net/http"
"path" "path"
"strconv" "strconv"
......
...@@ -5,7 +5,7 @@ import ( ...@@ -5,7 +5,7 @@ import (
"encoding/base64" "encoding/base64"
"encoding/json" "encoding/json"
"fmt" "fmt"
"git.kuschku.de/justjanne/imghost-frontend/shared" "git.kuschku.de/justjanne/imghost/shared"
"io" "io"
"mime/multipart" "mime/multipart"
"net/http" "net/http"
......
{{- /*gotype: git.kuschku.de/justjanne/imghost-frontend.IndexData*/ -}} {{- /*gotype: git.kuschku.de/justjanne/imghost.IndexData*/ -}}
{{template "header" .}} {{template "header" .}}
{{template "navigation" .User}} {{template "navigation" .User}}
{{template "content" .}} {{template "content" .}}
......
{{- /*gotype: git.kuschku.de/justjanne/imghost-frontend.IndexData*/ -}} {{- /*gotype: git.kuschku.de/justjanne/imghost.IndexData*/ -}}
{{define "footer"}} {{define "footer"}}
<script src="/assets/js/component/fake-input.js"></script> <script src="/assets/js/component/fake-input.js"></script>
<script src="/assets/js/component/copy.js"></script> <script src="/assets/js/component/copy.js"></script>
......
{{- /*gotype: git.kuschku.de/justjanne/imghost-frontend.IndexData*/ -}} {{- /*gotype: git.kuschku.de/justjanne/imghost.IndexData*/ -}}
{{define "header"}} {{define "header"}}
<!DOCTYPE html> <!DOCTYPE html>
<meta charset="utf-8"> <meta charset="utf-8">
......
{{- /*gotype: git.kuschku.de/justjanne/imghost-frontend.IndexData*/ -}} {{- /*gotype: git.kuschku.de/justjanne/imghost.IndexData*/ -}}
{{define "navigation"}} {{define "navigation"}}
<nav class="navigation"> <nav class="navigation">
<ul> <ul>
......
{{- /*gotype: git.kuschku.de/justjanne/imghost-frontend.ErrorData*/ -}} {{- /*gotype: git.kuschku.de/justjanne/imghost.ErrorData*/ -}}
{{define "title"}}Error | ik8r{{end}} {{define "title"}}Error | ik8r{{end}}
{{define "content"}} {{define "content"}}
<div class="page"> <div class="page">
......
{{- /*gotype: git.kuschku.de/justjanne/imghost-frontend.ImageDetailData*/ -}} {{- /*gotype: git.kuschku.de/justjanne/imghost.ImageDetailData*/ -}}
{{define "title"}}{{.Image.Title}} | ik8r{{end}} {{define "title"}}{{.Image.Title}} | ik8r{{end}}
{{define "content"}} {{define "content"}}
<div class="page image detail"> <div class="page image detail">
......
{{- /*gotype: git.kuschku.de/justjanne/imghost-frontend.ImageListData*/ -}} {{- /*gotype: git.kuschku.de/justjanne/imghost.ImageListData*/ -}}
{{define "title"}}My Images | ik8r{{end}} {{define "title"}}My Images | ik8r{{end}}
{{define "content"}} {{define "content"}}
<div class="page image list"> <div class="page image list">
......
...@@ -5,7 +5,7 @@ import ( ...@@ -5,7 +5,7 @@ import (
"database/sql" "database/sql"
"encoding/json" "encoding/json"
"fmt" "fmt"
"git.kuschku.de/justjanne/imghost-frontend/shared" "git.kuschku.de/justjanne/imghost/shared"
"github.com/hibiken/asynq" "github.com/hibiken/asynq"
"html/template" "html/template"
"net/http" "net/http"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment