6 lines
184 B
Dart
6 lines
184 B
Dart
import 'package:functions_framework/functions_framework.dart';
|
|
import 'package:shelf/shelf.dart';
|
|
|
|
@CloudFunction()
|
|
Response function(Request request) => Response.ok('Hello, World!');
|