12 lines
246 B
Go
12 lines
246 B
Go
package tui
|
|
|
|
import (
|
|
"github.com/leonardotrapani/hyprvoice/internal/config"
|
|
)
|
|
|
|
// editLanguage allows the user to select the global transcription language
|
|
func editLanguage(cfg *config.Config) error {
|
|
// implementation in task 5
|
|
return nil
|
|
}
|