Skip to content

Commit

Permalink
Modernize code
Browse files Browse the repository at this point in the history
Move to go mod for code organization
  • Loading branch information
pcasaretto committed Apr 25, 2019
1 parent c91bd4c commit c133d94
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/pcasaretto/dotenv

go 1.12
File renamed without changes.
3 changes: 2 additions & 1 deletion src/dotenv/main.go → main.go
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
package main

import (
"dotenv/parser"
"flag"
"fmt"
"io"
"log"
"os"
"os/exec"

"github.com/pcasaretto/dotenv/internal/parser"
)

func main() {
Expand Down

0 comments on commit c133d94

Please sign in to comment.