Style fixes.

This commit is contained in:
Renan DelValle 2019-03-15 14:55:21 -07:00
parent 40a6e8145b
commit 1e4a9d7d4c
No known key found for this signature in database
GPG key ID: C240AD6D6F443EC9

4
job.go
View file

@ -74,7 +74,7 @@ const (
type AuroraJob struct {
jobConfig *aurora.JobConfiguration
resources map[ResourceType]*aurora.Resource
metadata map[string]*aurora.Metadata
metadata map[string]*aurora.Metadata
portCount int
}
@ -108,7 +108,7 @@ func NewJob() Job {
return &AuroraJob{
jobConfig: jobConfig,
resources: resources,
metadata: make(map[string]*aurora.Metadata),
metadata: make(map[string]*aurora.Metadata),
portCount: 0,
}
}