Need to include one file multiple times, how to avoid warning

In utils.jl I define some enum variables which is used in several files as follows

# utils.jl
@enum State waiting=1 started=2 arrived=3

It is not logically reasonable to put it in a separate module.