Move WELCOME_MESSAGE to be cli-specific

This commit is contained in:
Richard Feldman 2023-09-18 00:08:05 -04:00
parent 0ab49454b3
commit e6b9446755
No known key found for this signature in database
GPG key ID: F1F21AA5B1D9E43B
4 changed files with 17 additions and 17 deletions

View file

@ -20,6 +20,18 @@ use target_lexicon::Triple;
use crate::cli_gen::eval_llvm;
pub const WELCOME_MESSAGE: &str = concatcp!(
"\n The rockin ",
BLUE,
"roc repl",
END_COL,
"\n",
PINK,
"────────────────────────",
END_COL,
"\n\n"
);
#[derive(Completer, Helper, Hinter, Default)]
pub struct ReplHelper {
validator: InputValidator,