remove build comments from main

This commit is contained in:
Emil Lerch 2021-10-03 12:01:06 -07:00
parent 85f755e0dd
commit 48ceb136de
Signed by untrusted user: lobo
GPG Key ID: A7B62D657EF764F8

View File

@ -1,15 +1,6 @@
const std = @import("std");
const lambda = @import("lambda.zig");
// zig package -Drelease-safe does the following:
//
// zig build -Drelease-safe
// strip zig-out/bin/bootstrap # should this be stripped?
// zip -j9 zig-out/bin/function.zip zig-out/bin/bootstrap
//
// zig deploy will also do something like:
//
// aws lambda update-function-code --function-name zig-test --zip-file fileb://function.zip
pub fn main() anyerror!void {
try lambda.run(handler);
}