Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
9e30599f
Commit
9e30599f
authored
Aug 12, 2014
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rename backend to pkg
parent
e7ce371e
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
10 additions
and
10 deletions
+10
-10
grafana
+1
-1
grafana.go
+1
-1
pkg/api/api.go
+2
-2
pkg/api/api_dashboard.go
+1
-1
pkg/api/api_login.go
+0
-0
pkg/api/api_models.go
+0
-0
pkg/api/api_render.go
+0
-0
pkg/api/api_test.go
+0
-0
pkg/components/phantom_renderer.go
+0
-0
pkg/components/phantom_renderer_test.go
+0
-0
pkg/configuration/configuration.go
+0
-0
pkg/models/dashboards.go
+0
-0
pkg/server/server.go
+2
-2
pkg/stores/file_store.go
+1
-1
pkg/stores/file_store_test.go
+1
-1
pkg/stores/store.go
+1
-1
No files found.
grafana
@
472e1c6d
Subproject commit
bfe1ef07330fcfcdbc3aa9ddd4eef827ee48f316
Subproject commit
472e1c6d8e4f6b1ea094d6e017e1a98803e48989
grafana.go
View file @
9e30599f
...
...
@@ -5,7 +5,7 @@ import (
"time"
log
"github.com/alecthomas/log4go"
"github.com/torkelo/grafana-pro/
backend
/server"
"github.com/torkelo/grafana-pro/
pkg
/server"
)
func
main
()
{
...
...
backend
/api/api.go
→
pkg
/api/api.go
View file @
9e30599f
...
...
@@ -6,8 +6,8 @@ import (
log
"github.com/alecthomas/log4go"
"github.com/gin-gonic/gin"
"github.com/gorilla/sessions"
"github.com/torkelo/grafana-pro/
backend
/components"
"github.com/torkelo/grafana-pro/
backend
/stores"
"github.com/torkelo/grafana-pro/
pkg
/components"
"github.com/torkelo/grafana-pro/
pkg
/stores"
)
type
HttpServer
struct
{
...
...
backend
/api/api_dashboard.go
→
pkg
/api/api_dashboard.go
View file @
9e30599f
...
...
@@ -2,7 +2,7 @@ package api
import
(
"github.com/gin-gonic/gin"
"github.com/torkelo/grafana-pro/
backend
/models"
"github.com/torkelo/grafana-pro/
pkg
/models"
)
func
init
()
{
...
...
backend
/api/api_login.go
→
pkg
/api/api_login.go
View file @
9e30599f
File moved
backend
/api/api_models.go
→
pkg
/api/api_models.go
View file @
9e30599f
File moved
backend
/api/api_render.go
→
pkg
/api/api_render.go
View file @
9e30599f
File moved
backend
/api/api_test.go
→
pkg
/api/api_test.go
View file @
9e30599f
File moved
backend
/components/phantom_renderer.go
→
pkg
/components/phantom_renderer.go
View file @
9e30599f
File moved
backend
/components/phantom_renderer_test.go
→
pkg
/components/phantom_renderer_test.go
View file @
9e30599f
File moved
backend
/configuration/configuration.go
→
pkg
/configuration/configuration.go
View file @
9e30599f
File moved
backend
/models/dashboards.go
→
pkg
/models/dashboards.go
View file @
9e30599f
File moved
backend
/server/server.go
→
pkg
/server/server.go
View file @
9e30599f
package
server
import
(
"github.com/torkelo/grafana-pro/
backend
/api"
"github.com/torkelo/grafana-pro/
backend
/stores"
"github.com/torkelo/grafana-pro/
pkg
/api"
"github.com/torkelo/grafana-pro/
pkg
/stores"
)
type
Server
struct
{
...
...
backend
/stores/file_store.go
→
pkg
/stores/file_store.go
View file @
9e30599f
...
...
@@ -8,7 +8,7 @@ import (
"strings"
log
"github.com/alecthomas/log4go"
"github.com/torkelo/grafana-pro/
backend
/models"
"github.com/torkelo/grafana-pro/
pkg
/models"
)
type
fileStore
struct
{
...
...
backend
/stores/file_store_test.go
→
pkg
/stores/file_store_test.go
View file @
9e30599f
...
...
@@ -9,7 +9,7 @@ import (
"testing"
.
"github.com/smartystreets/goconvey/convey"
"github.com/torkelo/grafana-pro/
backend
/models"
"github.com/torkelo/grafana-pro/
pkg
/models"
)
func
TestFileStore
(
t
*
testing
.
T
)
{
...
...
backend
/stores/store.go
→
pkg
/stores/store.go
View file @
9e30599f
package
stores
import
(
"github.com/torkelo/grafana-pro/
backend
/models"
"github.com/torkelo/grafana-pro/
pkg
/models"
)
type
Store
interface
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment