2015-08-07 07:23:09 +00:00
|
|
|
// Copyright 2015 The go-python Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2015-08-10 14:32:31 +00:00
|
|
|
// Package empty does not expose anything.
|
|
|
|
// We may want to wrap and import it just for its side-effects.
|
2015-08-07 07:23:09 +00:00
|
|
|
package empty
|
2015-08-10 14:32:31 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/go-python/gopy/_examples/cpkg"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
cpkg.Printf("empty.init()... [CALLED]\n")
|
|
|
|
}
|