Setting a new OSC target for Tidal

Hello,
I have what feels like the dumbest question ever.

I'm reading the tutorial on how to set a new OSC target for Tidal at:

It doesn't specify where this code goes:
let target =
Target {oName = "visualiser", -- A friendly name for the target (only used in error messages)
oAddress = "localhost", -- The target's network address, normally "localhost"
oPort = 5050, -- The network port the target is listening on
oLatency = 0.2, -- Additional delay, to smooth out network jitter/get things in sync
oSchedule = Live, -- The scheduling method - see below
oWindow = Nothing, -- Not yet used
oHandshake = False, -- SuperDirt specific
oBusPort = Nothing -- Also SuperDirt specific
}

Does this go in one of the .hs files in Tidal or does it just go in Pulsar with a Tidal file as part of the rest of your live code and you just shift+enter it?

You could do either. It goes in the .hs file if you need it as part of your performance setup, it can also go in your tidal file if you need to configure it on the fly.

Okay, I just put it in the .hs file via pulsar and that seems to work! Thanks!