GetFile returns a file from the module's source.
(name string)
| 144 | |
| 145 | // GetFile returns a file from the module's source. |
| 146 | func (m *PythonSdk) GetFile(name string) *dagger.File { |
| 147 | return m.ContextDir.File(path.Join(m.SubPath, name)) |
| 148 | } |
| 149 | |
| 150 | // UseUvLock returns true if the runtime should expect a uv.lock file. |
| 151 | func (m *PythonSdk) UseUvLock() bool { |