Skip to content

Commit

Permalink
separate lang.* to other package
Browse files Browse the repository at this point in the history
  • Loading branch information
takashi committed May 7, 2014
1 parent f73d044 commit c736927
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lang.go → language/lang.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main
package language

type Lang struct {
Name string
Expand Down
2 changes: 1 addition & 1 deletion lang_js.go → language/lang_js.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main
package language

var LangJs = &Lang{
Name: "JavaScript",
Expand Down
2 changes: 1 addition & 1 deletion lang_rb.go → language/lang_rb.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main
package language

var LangRuby = &Lang{
Name: "Ruby",
Expand Down

0 comments on commit c736927

Please sign in to comment.