Is the feature request related to an existing bug? Please describe.
I want a self-contained binary application that can do the facial recognition.
Describe the solution you'd like
Add an embed.go with a //go:embed comment so I can import the data from the module. It's worth noting if it's a different package this doesn't change the binary size unless it's imported.
Describe alternatives you've considered
I can copy the files into my project and embed them there.
Is the feature request related to an existing bug? Please describe.
I want a self-contained binary application that can do the facial recognition.
Describe the solution you'd like
Add an embed.go with a
//go:embedcomment so I can import the data from the module. It's worth noting if it's a different package this doesn't change the binary size unless it's imported.Describe alternatives you've considered
I can copy the files into my project and embed them there.