Skip to content

Commit

Permalink
package reorg
Browse files Browse the repository at this point in the history
  • Loading branch information
VarthanV committed Nov 16, 2024
1 parent eb1269a commit 566c10b
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion core/errors.go → errors.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package core
package hyper

import "errors"

Expand Down
2 changes: 1 addition & 1 deletion core/handler.go → handler.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package core
package hyper

type HandlerFunc func(w ResponseWriter, request *Request)
2 changes: 1 addition & 1 deletion core/http_methods.go → http_methods.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package core
package hyper

type HttpMethod string

Expand Down
2 changes: 1 addition & 1 deletion core/hyper.go → hyper.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package core
package hyper

import (
"bufio"
Expand Down
2 changes: 1 addition & 1 deletion core/objects.go → objects.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package core
package hyper

const (
delimNewLine = '\n'
Expand Down
2 changes: 1 addition & 1 deletion core/request.go → request.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package core
package hyper

import (
"encoding/json"
Expand Down
2 changes: 1 addition & 1 deletion core/response.go → response.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package core
package hyper

import (
"bytes"
Expand Down
2 changes: 1 addition & 1 deletion core/static.go → static.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package core
package hyper

import (
"log"
Expand Down
2 changes: 1 addition & 1 deletion core/templates.go → templates.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package core
package hyper

import (
"log"
Expand Down

0 comments on commit 566c10b

Please sign in to comment.