17 lines
353 B
Python
Executable File
17 lines
353 B
Python
Executable File
#!/usr/bin/env python3
|
|
# Owner(s): ["oncall: distributed"]
|
|
|
|
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed under the BSD-style license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
|
|
def main():
|
|
print("Success, smoke test")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|