summaryrefslogtreecommitdiffstats
path: root/src/configs/go.rs
diff options
context:
space:
mode:
authorDavid Knaack <davidkna@users.noreply.github.com>2021-03-15 11:40:52 +0100
committerGitHub <noreply@github.com>2021-03-15 11:40:52 +0100
commit052b56fe10494c37afd058548c5dc7e2f359e08c (patch)
tree041d9cb554a79bfe8a997d75f13a75a0ba51801e /src/configs/go.rs
parent6fd7d7b5010c28d0557e4ff562187098abaa3bc6 (diff)
refactor: replace RootModuleConfig with Default (#2458)
Diffstat (limited to 'src/configs/go.rs')
-rw-r--r--src/configs/go.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/configs/go.rs b/src/configs/go.rs
index b3a1c2a3d..9db7f28f7 100644
--- a/src/configs/go.rs
+++ b/src/configs/go.rs
@@ -1,4 +1,4 @@
-use crate::config::{ModuleConfig, RootModuleConfig};
+use crate::config::ModuleConfig;
use starship_module_config_derive::ModuleConfig;
@@ -13,8 +13,8 @@ pub struct GoConfig<'a> {
pub detect_folders: Vec<&'a str>,
}
-impl<'a> RootModuleConfig<'a> for GoConfig<'a> {
- fn new() -> Self {
+impl<'a> Default for GoConfig<'a> {
+ fn default() -> Self {
GoConfig {
format: "via [$symbol($version )]($style)",
symbol: "🐹 ",