diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-01-28 22:17:22 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-01-29 09:25:59 +0100 |
commit | 75f32d3967e4d13b86b0d720ebc808c6fd9caa05 (patch) | |
tree | b919cd2796220c74b1d6fd69b363c53505681f3a /askama_derive | |
parent | c6f9a053c7328e6c782508114bd96aa569b5de7d (diff) | |
download | askama-75f32d3967e4d13b86b0d720ebc808c6fd9caa05.tar.gz askama-75f32d3967e4d13b86b0d720ebc808c6fd9caa05.tar.bz2 askama-75f32d3967e4d13b86b0d720ebc808c6fd9caa05.zip |
Move Gotham integration into separate askama_gotham crate
Diffstat (limited to 'askama_derive')
-rw-r--r-- | askama_derive/src/generator.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/askama_derive/src/generator.rs b/askama_derive/src/generator.rs index 0d77c16..949019b 100644 --- a/askama_derive/src/generator.rs +++ b/askama_derive/src/generator.rs @@ -258,16 +258,16 @@ impl<'a> Generator<'a> { // Implement gotham's `IntoResponse`. fn impl_gotham_into_response(&mut self, buf: &mut Buffer) { - self.write_header(buf, "::askama::gotham::IntoResponse", None); + self.write_header(buf, "::askama_gotham::IntoResponse", None); buf.writeln( - "fn into_response(self, _state: &::askama::gotham::State)\ - -> ::askama::gotham::Response<::askama::gotham::Body> {", + "fn into_response(self, _state: &::askama_gotham::State)\ + -> ::askama_gotham::Response<::askama_gotham::Body> {", ); let ext = match self.input.path.extension() { Some(s) => s.to_str().unwrap(), None => "txt", }; - buf.writeln(&format!("::askama::gotham::respond(&self, {:?})", ext)); + buf.writeln(&format!("::askama_gotham::respond(&self, {:?})", ext)); buf.writeln("}"); buf.writeln("}"); } |