There are at least three or four different approaches you can take to dealing with state in a Falcon app.
The first one is to have a module that exposes a function or attribute with read-only global state that doesn't change in between requests. This is typically used for app configuration that is loaded at startup. There are many variations on this theme, but here is an example showing one approach:
import os
import aumbry