-
Notifications
You must be signed in to change notification settings - Fork 19
refac(config): Move config interfaces back into config package #213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please organize imports and fix travis tests (linters)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's find a better home for version.go
as well. Other than that, LGTM!
pkg/config/interface.go.go
Outdated
|
||
// Package pkg // | ||
package pkg | ||
package config |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably not the intended file name change :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
...referring to interface.go.go
pkg/event/factory.go
Outdated
@@ -20,6 +20,7 @@ package event | |||
import ( | |||
"errors" | |||
"fmt" | |||
"github.com/optimizely/go-sdk/pkg/config" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pkg
is still being required. We should probably move version.go
as well.
Summary
pkg
intoconfig
so we don't have anything hanging off of thepkg
package.Tests