(dirName string)
| 90 | } |
| 91 | |
| 92 | func isValidSessionDir(dirName string) bool { |
| 93 | match, err := filepath.Match(sessionDirPrefix+"*", dirName) |
| 94 | return err == nil && match |
| 95 | } |
| 96 | |
| 97 | func extractArchive(ctx context.Context, logger slog.Logger, fs afero.Fs, directory string, archive []byte) error { |
| 98 | logger.Info(ctx, "unpacking source archive", |
no test coverage detected