A singleton is one way. Or if what you need are a lot of functions in a bunch of files all over the place you can use static func.
Then you don't need an instance of the class just import the class. I have a few key global singletons, but a lot of my processing code I hide away in static functions.
Hopeful that the next release 4.0 has support for functions as "first-class" citizens. Not everything needs to be an instance of a class. Hope this helps.