diff options
| author | Adam Mathes <adam@trenchant.org> | 2017-02-09 20:28:45 -0800 | 
|---|---|---|
| committer | Adam Mathes <adam@trenchant.org> | 2017-02-09 20:28:45 -0800 | 
| commit | 5ed12f4455e9804ed87d31b49d57eff5b0cf72dc (patch) | |
| tree | a3b1e0fa97b607ce3600829d7b5f0a7c24317b7f | |
| parent | bc59962f0fe8ef0bbea0153089c560edc7467888 (diff) | |
| download | snkt-5ed12f4455e9804ed87d31b49d57eff5b0cf72dc.tar.gz snkt-5ed12f4455e9804ed87d31b49d57eff5b0cf72dc.tar.bz2 snkt-5ed12f4455e9804ed87d31b49d57eff5b0cf72dc.zip | |
adammathes.com namespace
| -rw-r--r-- | archive/archive.go | 6 | ||||
| -rw-r--r-- | archive/paged.go | 6 | ||||
| -rw-r--r-- | main.go | 10 | ||||
| -rw-r--r-- | post/post.go | 8 | ||||
| -rw-r--r-- | render/render.go | 2 | ||||
| -rw-r--r-- | site/init.go | 4 | ||||
| -rw-r--r-- | site/site.go | 8 | ||||
| -rw-r--r-- | vlog/vlog.go | 2 | 
8 files changed, 23 insertions, 23 deletions
| diff --git a/archive/archive.go b/archive/archive.go index ce1b45e..0a6e3c9 100644 --- a/archive/archive.go +++ b/archive/archive.go @@ -1,9 +1,9 @@  package archive  import ( -	"snkt/config" -	"snkt/post" -	"snkt/render" +	"adammathes.com/snkt/config" +	"adammathes.com/snkt/post" +	"adammathes.com/snkt/render"  	"path"  ) diff --git a/archive/paged.go b/archive/paged.go index 217e6b3..d308d3d 100644 --- a/archive/paged.go +++ b/archive/paged.go @@ -1,9 +1,9 @@  package archive  import ( -	"snkt/config" -	"snkt/post" -	"snkt/render" +	"adammathes.com/snkt/config" +	"adammathes.com/snkt/post" +	"adammathes.com/snkt/render"  	"fmt"  	"math"  	"path" @@ -5,11 +5,11 @@ package main  import (  	"flag" -	"snkt/config" -	"snkt/render" -	"snkt/site" -	"snkt/web" -	"snkt/vlog" +	"adammathes.com/snkt/config" +	"adammathes.com/snkt/render" +	"adammathes.com/snkt/site" +	"adammathes.com/snkt/web" +	"adammathes.com/snkt/vlog"  	"fmt"  ) diff --git a/post/post.go b/post/post.go index ab1ccb6..9561e46 100644 --- a/post/post.go +++ b/post/post.go @@ -5,10 +5,10 @@ unit of a site: a post. Posts are represented as text files, then converted to H  package post  import ( -	"snkt/config" -	"snkt/render" -	"snkt/text" -	"snkt/vlog" +	"adammathes.com/snkt/config" +	"adammathes.com/snkt/render" +	"adammathes.com/snkt/text" +	"adammathes.com/snkt/vlog"  	"github.com/russross/blackfriday"  	"io/ioutil"  	"log" diff --git a/render/render.go b/render/render.go index 3661607..fa768ca 100644 --- a/render/render.go +++ b/render/render.go @@ -2,7 +2,7 @@ package render  import (  	"bytes" -	"snkt/config" +	"adammathes.com/snkt/config"  	"io/ioutil"  	"log"  	"os" diff --git a/site/init.go b/site/init.go index 02a7586..82eda44 100644 --- a/site/init.go +++ b/site/init.go @@ -2,8 +2,8 @@ package site  import (  	"path" -	"snkt/render" -	"snkt/config" +	"adammathes.com/snkt/render" +	"adammathes.com/snkt/config"  	"os"  	"log"  	"gopkg.in/yaml.v2" diff --git a/site/site.go b/site/site.go index 87aa7fc..78eb2f0 100644 --- a/site/site.go +++ b/site/site.go @@ -1,10 +1,10 @@  package site  import ( -	"snkt/archive" -	"snkt/config" -	"snkt/post" -	"snkt/render" +	"adammathes.com/snkt/archive" +	"adammathes.com/snkt/config" +	"adammathes.com/snkt/post" +	"adammathes.com/snkt/render"  	"io/ioutil"  	"log"  	"path" diff --git a/vlog/vlog.go b/vlog/vlog.go index 935da43..ea9e621 100644 --- a/vlog/vlog.go +++ b/vlog/vlog.go @@ -2,7 +2,7 @@  package vlog  import ( -	"snkt/config" +	"adammathes.com/snkt/config"  	"log"  ) | 
