Explorar o código

core API: from_file, from_reader

awiouy %!s(int64=7) %!d(string=hai) anos
pai
achega
c86f790986
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      core/src/authentication.rs

+ 2 - 2
core/src/authentication.rs

@@ -121,14 +121,14 @@ impl Credentials {
         }
     }
 
-    pub fn from_reader<R: Read>(mut reader: R) -> Credentials {
+    fn from_reader<R: Read>(mut reader: R) -> Credentials {
         let mut contents = String::new();
         reader.read_to_string(&mut contents).unwrap();
 
         serde_json::from_str(&contents).unwrap()
     }
 
-    pub fn from_file<P: AsRef<Path>>(path: P) -> Option<Credentials> {
+    pub(crate) fn from_file<P: AsRef<Path>>(path: P) -> Option<Credentials> {
         File::open(path).ok().map(Credentials::from_reader)
     }