diff --git a/defaults/defaults.go b/defaults/defaults.go index ee2cf1c..0a6b997 100644 --- a/defaults/defaults.go +++ b/defaults/defaults.go @@ -1,3 +1,10 @@ +// Package defaults houses default implementations for the very many +// interfaces that authboss has. It's a goal of the defaults package +// to provide the core where authboss implements the shell. +// +// It's simultaneously supposed to be possible to take as many or +// as few of these implementations as you desire, allowing you to +// reimplement where necessary, but reuse where possible. package defaults import ( diff --git a/defaults/doc.go b/defaults/doc.go deleted file mode 100644 index 471c1a0..0000000 --- a/defaults/doc.go +++ /dev/null @@ -1,8 +0,0 @@ -// Package defaults houses default implementations for the very many -// interfaces that authboss has. It's a goal of the defaults package -// to provide the core where authboss implements the shell. -// -// It's simultaneously supposed to be possible to take as many or -// as few of these implementations as you desire, allowing you to -// reimplement where necessary, but reuse where possible. -package defaults