Skip to content

Commit

Permalink
dart format
Browse files Browse the repository at this point in the history
  • Loading branch information
l7ssha committed Nov 26, 2024
1 parent 465545d commit b3b2007
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/src/web_app/mustache.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ class MustacheResponse extends shelf.Response {

final templateData = await File("$webServerTemplatesDirectory/$name").readAsString();

return shelf.Response(200,
body: await processor.process(templateData), headers: {"Content-Type": 'text/html'});
return shelf.Response(200, body: await processor.process(templateData), headers: {"Content-Type": 'text/html'});
}
}

Expand Down

0 comments on commit b3b2007

Please sign in to comment.